source: main/waeup.sirp/trunk/src/waeup/sirp/applicants/jambtables/__init__.py @ 5689

Last change on this file since 5689 was 5689, checked in by uli, 14 years ago

Fix various imports after package move.

File size: 488 bytes
Line 
1# Make this a package.
2from waeup.sirp.applicants.jambtables.applicants import (
3    ResultEntry, Applicant, ApplicantFactory, ApplicantContainer,
4    )
5from waeup.sirp.applicants.jambtables.batching import ApplicantImporter
6from waeup.sirp.applicants.jambtables.jambtables import (
7    JAMBDataTable, JAMB_DATA_HEADERS
8    )
9
10__all__ = (
11    Applicant,
12    ApplicantContainer,
13    ApplicantFactory,
14    ApplicantImporter,
15    JAMBDataTable,
16    JAMB_DATA_HEADERS,
17    ResultEntry,
18    )
Note: See TracBrowser for help on using the repository browser.