We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a013c0 commit 48bbeddCopy full SHA for 48bbedd
aries_cloudcontroller/model/taa_acceptance.py
@@ -36,26 +36,6 @@ def __init__(
36
**kwargs,
37
)
38
39
- @validator("time")
40
- def time_max(cls, value):
41
- # Property is optional
42
- if value is None:
43
- return
44
-
45
- if value > -1:
46
- raise ValueError(f"time must be less than -1, currently {value}")
47
- return value
48
49
50
- def time_min(cls, value):
51
52
53
54
55
- if value < 0:
56
- raise ValueError(f"time must be greater than 0, currently {value}")
57
58
59
class Config:
60
allow_population_by_field_name = True
61
0 commit comments