Skip to content

Commit 9655022

Browse files
committed
feat: regenerate client
Signed-off-by: Timo Glastra <timo@animo.id>
1 parent a7560e4 commit 9655022

File tree

3 files changed

+0
-60
lines changed

3 files changed

+0
-60
lines changed

aries_cloudcontroller/model/indy_proof_req_attr_spec_non_revoked.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,6 @@ def __init__(
3636
**kwargs,
3737
)
3838

39-
@validator("from_")
40-
def from__max(cls, value):
41-
# Property is optional
42-
if value is None:
43-
return
44-
45-
if value > -1:
46-
raise ValueError(f"from_ must be less than -1, currently {value}")
47-
return value
48-
4939
@validator("from_")
5040
def from__min(cls, value):
5141
# Property is optional
@@ -56,16 +46,6 @@ def from__min(cls, value):
5646
raise ValueError(f"from_ must be greater than 0, currently {value}")
5747
return value
5848

59-
@validator("to")
60-
def to_max(cls, value):
61-
# Property is optional
62-
if value is None:
63-
return
64-
65-
if value > -1:
66-
raise ValueError(f"to must be less than -1, currently {value}")
67-
return value
68-
6949
@validator("to")
7050
def to_min(cls, value):
7151
# Property is optional

aries_cloudcontroller/model/indy_proof_req_pred_spec_non_revoked.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,6 @@ def __init__(
3636
**kwargs,
3737
)
3838

39-
@validator("from_")
40-
def from__max(cls, value):
41-
# Property is optional
42-
if value is None:
43-
return
44-
45-
if value > -1:
46-
raise ValueError(f"from_ must be less than -1, currently {value}")
47-
return value
48-
4939
@validator("from_")
5040
def from__min(cls, value):
5141
# Property is optional
@@ -56,16 +46,6 @@ def from__min(cls, value):
5646
raise ValueError(f"from_ must be greater than 0, currently {value}")
5747
return value
5848

59-
@validator("to")
60-
def to_max(cls, value):
61-
# Property is optional
62-
if value is None:
63-
return
64-
65-
if value > -1:
66-
raise ValueError(f"to must be less than -1, currently {value}")
67-
return value
68-
6949
@validator("to")
7050
def to_min(cls, value):
7151
# Property is optional

aries_cloudcontroller/model/indy_proof_request_non_revoked.py

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,6 @@ def __init__(
3636
**kwargs,
3737
)
3838

39-
@validator("from_")
40-
def from__max(cls, value):
41-
# Property is optional
42-
if value is None:
43-
return
44-
45-
if value > -1:
46-
raise ValueError(f"from_ must be less than -1, currently {value}")
47-
return value
48-
4939
@validator("from_")
5040
def from__min(cls, value):
5141
# Property is optional
@@ -56,16 +46,6 @@ def from__min(cls, value):
5646
raise ValueError(f"from_ must be greater than 0, currently {value}")
5747
return value
5848

59-
@validator("to")
60-
def to_max(cls, value):
61-
# Property is optional
62-
if value is None:
63-
return
64-
65-
if value > -1:
66-
raise ValueError(f"to must be less than -1, currently {value}")
67-
return value
68-
6949
@validator("to")
7050
def to_min(cls, value):
7151
# Property is optional

0 commit comments

Comments
 (0)