@@ -22,7 +22,7 @@ class CallookCallsignModel(BaseModel):
22
22
class_ : enums .LicenseClass = Field (default = enums .LicenseClass .NONE , alias = "class" )
23
23
24
24
class Config :
25
- anystr_strip_whitespace = True
25
+ str_strip_whitespace = True
26
26
arbitrary_types_allowed = True
27
27
28
28
@@ -31,7 +31,7 @@ class CallookTrusteeModel(BaseModel):
31
31
name : Optional [str ] = None
32
32
33
33
class Config :
34
- anystr_strip_whitespace = True
34
+ str_strip_whitespace = True
35
35
arbitrary_types_allowed = True
36
36
37
37
@@ -41,7 +41,7 @@ class CallookAddressModel(BaseModel):
41
41
attn : Optional [str ] = None
42
42
43
43
class Config :
44
- anystr_strip_whitespace = True
44
+ str_strip_whitespace = True
45
45
arbitrary_types_allowed = True
46
46
47
47
@@ -57,7 +57,7 @@ def _to_grid(cls, v):
57
57
return v
58
58
59
59
class Config :
60
- anystr_strip_whitespace = True
60
+ str_strip_whitespace = True
61
61
arbitrary_types_allowed = True
62
62
63
63
@@ -78,7 +78,7 @@ def _parse_date(cls, v):
78
78
return v
79
79
80
80
class Config :
81
- anystr_strip_whitespace = True
81
+ str_strip_whitespace = True
82
82
arbitrary_types_allowed = True
83
83
84
84
@@ -94,7 +94,7 @@ class CallookDataModel(BaseModel):
94
94
otherInfo : CallookOtherInfoModel = Field (default_factory = CallookOtherInfoModel )
95
95
96
96
class Config :
97
- anystr_strip_whitespace = True
97
+ str_strip_whitespace = True
98
98
arbitrary_types_allowed = True
99
99
100
100
0 commit comments