@@ -69,10 +69,7 @@ def validate(
69
69
@classmethod
70
70
def validate (
71
71
cls ,
72
- arg : typing .Union [
73
- UuidDict ,
74
- Uuid [frozendict .frozendict ],
75
- ],
72
+ arg : UuidDict ,
76
73
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
77
74
) -> Uuid [frozendict .frozendict ]: ...
78
75
@@ -162,10 +159,7 @@ def validate(
162
159
@classmethod
163
160
def validate (
164
161
cls ,
165
- arg : typing .Union [
166
- DateDict ,
167
- Date [frozendict .frozendict ],
168
- ],
162
+ arg : DateDict ,
169
163
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
170
164
) -> Date [frozendict .frozendict ]: ...
171
165
@@ -255,10 +249,7 @@ def validate(
255
249
@classmethod
256
250
def validate (
257
251
cls ,
258
- arg : typing .Union [
259
- DateTimeDict ,
260
- DateTime [frozendict .frozendict ],
261
- ],
252
+ arg : DateTimeDict ,
262
253
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
263
254
) -> DateTime [frozendict .frozendict ]: ...
264
255
@@ -348,10 +339,7 @@ def validate(
348
339
@classmethod
349
340
def validate (
350
341
cls ,
351
- arg : typing .Union [
352
- NumberDict ,
353
- Number [frozendict .frozendict ],
354
- ],
342
+ arg : NumberDict ,
355
343
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
356
344
) -> Number [frozendict .frozendict ]: ...
357
345
@@ -440,10 +428,7 @@ def validate(
440
428
@classmethod
441
429
def validate (
442
430
cls ,
443
- arg : typing .Union [
444
- BinaryDict ,
445
- Binary [frozendict .frozendict ],
446
- ],
431
+ arg : BinaryDict ,
447
432
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
448
433
) -> Binary [frozendict .frozendict ]: ...
449
434
@@ -532,10 +517,7 @@ def validate(
532
517
@classmethod
533
518
def validate (
534
519
cls ,
535
- arg : typing .Union [
536
- Int32Dict ,
537
- Int32 [frozendict .frozendict ],
538
- ],
520
+ arg : Int32Dict ,
539
521
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
540
522
) -> Int32 [frozendict .frozendict ]: ...
541
523
@@ -624,10 +606,7 @@ def validate(
624
606
@classmethod
625
607
def validate (
626
608
cls ,
627
- arg : typing .Union [
628
- Int64Dict ,
629
- Int64 [frozendict .frozendict ],
630
- ],
609
+ arg : Int64Dict ,
631
610
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
632
611
) -> Int64 [frozendict .frozendict ]: ...
633
612
@@ -716,10 +695,7 @@ def validate(
716
695
@classmethod
717
696
def validate (
718
697
cls ,
719
- arg : typing .Union [
720
- DoubleDict ,
721
- Double [frozendict .frozendict ],
722
- ],
698
+ arg : DoubleDict ,
723
699
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
724
700
) -> Double [frozendict .frozendict ]: ...
725
701
@@ -808,10 +784,7 @@ def validate(
808
784
@classmethod
809
785
def validate (
810
786
cls ,
811
- arg : typing .Union [
812
- FloatDict ,
813
- _Float [frozendict .frozendict ],
814
- ],
787
+ arg : FloatDict ,
815
788
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
816
789
) -> _Float [frozendict .frozendict ]: ...
817
790
@@ -1320,10 +1293,7 @@ def __getitem__(
1320
1293
@classmethod
1321
1294
def validate (
1322
1295
cls ,
1323
- arg : typing .Union [
1324
- AnyTypeAndFormatDictInput ,
1325
- AnyTypeAndFormat [frozendict .frozendict ],
1326
- ],
1296
+ arg : AnyTypeAndFormatDictInput ,
1327
1297
configuration : typing .Optional [schemas .schema_configuration .SchemaConfiguration ] = None
1328
1298
) -> AnyTypeAndFormatDict :
1329
1299
return super ().validate (
0 commit comments