summaryrefslogtreecommitdiff
path: root/archaeological_finds/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2021-03-19 11:17:58 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2021-03-19 11:17:58 +0100
commit33e342679b59fa48607c5acdc1fe826b666a1a5f (patch)
tree31b6b0a838b83efce2437d956a4f8d1a54f0aae6 /archaeological_finds/models.py
parent0b3d9bb13c3a7d9bab959e8a734d2ba89e48d359 (diff)
downloadIshtar-33e342679b59fa48607c5acdc1fe826b666a1a5f.tar.bz2
Ishtar-33e342679b59fa48607c5acdc1fe826b666a1a5f.zip
Format - black: finds
Diffstat (limited to 'archaeological_finds/models.py')
-rw-r--r--archaeological_finds/models.py88
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",
+]