generated from daniil-berg/boilerplate-py
Improve imports
This commit is contained in:
parent
8a8ea7ec09
commit
60c6b1c4bb
@ -1 +1,2 @@
|
||||
from .base import LocalAsyncSession, ORMBase, engine
|
||||
from .geography import *
|
||||
from .companies import *
|
||||
|
@ -17,6 +17,15 @@ from compub.utils import multi_max
|
||||
from .base import AbstractBase, ORMBase
|
||||
|
||||
|
||||
__all__ = [
|
||||
'LegalForm',
|
||||
'LegalFormSubcategory',
|
||||
'Integer',
|
||||
'Company',
|
||||
'CompanyName',
|
||||
]
|
||||
|
||||
|
||||
class LegalForm(AbstractBase):
|
||||
__tablename__ = 'legal_form'
|
||||
|
||||
|
@ -8,6 +8,14 @@ from sqlalchemy_utils.types import CountryType, UUIDType
|
||||
from .base import AbstractBase
|
||||
|
||||
|
||||
__all__ = [
|
||||
'StateProvince',
|
||||
'City',
|
||||
'Street',
|
||||
'Address',
|
||||
]
|
||||
|
||||
|
||||
class StateProvince(AbstractBase):
|
||||
__tablename__ = 'state_province'
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user