File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
backend/compact-connect/lambdas/python/common/cc_common/data_model Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 15
15
from cc_common .data_model .schema .base_record import SSNIndexRecordSchema
16
16
from cc_common .data_model .schema .common import ActiveInactiveStatus , CompactEligibilityStatus
17
17
from cc_common .data_model .schema .home_jurisdiction .record import ProviderHomeJurisdictionSelectionRecordSchema
18
- from cc_common .data_model .schema .license import LicenseData , LicenseUpdateRecordSchema , LicenseUpdateData
18
+ from cc_common .data_model .schema .license import LicenseData , LicenseUpdateData
19
19
from cc_common .data_model .schema .military_affiliation .common import (
20
20
MilitaryAffiliationStatus ,
21
21
MilitaryAffiliationType ,
Original file line number Diff line number Diff line change @@ -114,9 +114,7 @@ def administrator_set_status(self) -> str:
114
114
def administrator_set_status (self , value : ActiveInactiveStatus ) -> None :
115
115
# Store the string value rather than the enum object
116
116
# since the schema loads this value as a string.
117
- self ._data ['administratorSetStatus' ] = (
118
- value .value if isinstance (value , ActiveInactiveStatus ) else value
119
- )
117
+ self ._data ['administratorSetStatus' ] = value .value if isinstance (value , ActiveInactiveStatus ) else value
120
118
121
119
@property
122
120
def status (self ) -> str :
You can’t perform that action at this time.
0 commit comments