diff options
Diffstat (limited to 'archaeological_finds/models.py')
| -rw-r--r-- | archaeological_finds/models.py | 88 | 
1 files changed, 68 insertions, 20 deletions
diff --git a/archaeological_finds/models.py b/archaeological_finds/models.py index 53fa35c40..cd8100aaa 100644 --- a/archaeological_finds/models.py +++ b/archaeological_finds/models.py @@ -1,21 +1,69 @@ -from archaeological_finds.models_finds import MaterialType, ConservatoryState, \ -    CheckedType, IntegrityType, RemarkabilityType, ObjectType, BaseFind, \ -    FindBasket, Find, Property, BatchType, BFBulkView, FBulkView, \ -    FirstBaseFindView, AlterationType, AlterationCauseType, \ -    TreatmentEmergencyType, TreatmentType, CommunicabilityType, \ -    MaterialTypeQualityType, ObjectTypeQualityType, FindInsideContainer -from archaeological_finds.models_treatments import Treatment, \ -    AbsFindTreatments, FindUpstreamTreatments, FindDownstreamTreatments, \ -    FindTreatments, TreatmentFile, TreatmentFileType, \ -    TreatmentState, FindNonModifTreatments +from archaeological_finds.models_finds import ( +    MaterialType, +    ConservatoryState, +    CheckedType, +    IntegrityType, +    RemarkabilityType, +    ObjectType, +    BaseFind, +    FindBasket, +    Find, +    Property, +    BatchType, +    BFBulkView, +    FBulkView, +    FirstBaseFindView, +    AlterationType, +    AlterationCauseType, +    TreatmentEmergencyType, +    TreatmentType, +    CommunicabilityType, +    MaterialTypeQualityType, +    ObjectTypeQualityType, +    FindInsideContainer, +) +from archaeological_finds.models_treatments import ( +    Treatment, +    AbsFindTreatments, +    FindUpstreamTreatments, +    FindDownstreamTreatments, +    FindTreatments, +    TreatmentFile, +    TreatmentFileType, +    TreatmentState, +    FindNonModifTreatments, +) -__all__ = ['MaterialType', 'ConservatoryState', 'IntegrityType', 'CheckedType', -           'RemarkabilityType', 'ObjectType', 'BaseFind', 'FindBasket', 'Find', -           'Property', 'BFBulkView', 'FBulkView', 'FirstBaseFindView', -           'AlterationType', 'AlterationCauseType', 'TreatmentEmergencyType', -           'BatchType', 'TreatmentType', 'TreatmentState', -           'Treatment', 'AbsFindTreatments', 'FindUpstreamTreatments', -           'FindNonModifTreatments', 'FindDownstreamTreatments', -           'FindTreatments', 'TreatmentFile', 'TreatmentFileType', -           'CommunicabilityType', 'MaterialTypeQualityType', -           'ObjectTypeQualityType', 'FindInsideContainer'] +__all__ = [ +    "MaterialType", +    "ConservatoryState", +    "IntegrityType", +    "CheckedType", +    "RemarkabilityType", +    "ObjectType", +    "BaseFind", +    "FindBasket", +    "Find", +    "Property", +    "BFBulkView", +    "FBulkView", +    "FirstBaseFindView", +    "AlterationType", +    "AlterationCauseType", +    "TreatmentEmergencyType", +    "BatchType", +    "TreatmentType", +    "TreatmentState", +    "Treatment", +    "AbsFindTreatments", +    "FindUpstreamTreatments", +    "FindNonModifTreatments", +    "FindDownstreamTreatments", +    "FindTreatments", +    "TreatmentFile", +    "TreatmentFileType", +    "CommunicabilityType", +    "MaterialTypeQualityType", +    "ObjectTypeQualityType", +    "FindInsideContainer", +]  | 
