Skip to content

Commit 388fc9a

Browse files
Fix @d3rky (Pavel) feedback
1 parent ba9fa02 commit 388fc9a

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

connect/models/constraints.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ class Constraints(BaseModel):
3030
reconciliation = None # type: bool
3131
""" (bool) True if vendor has marked parameters as for reconciliation purposes """
3232

33-
min_lenght = None # type: int
33+
min_length = None # type: int
3434
""" (integer) Only for password type """
3535

36-
max_lenght = None # type: int
36+
max_length = None # type: int
3737
""" (integer) Only for password type """

connect/models/param.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ class Param(BaseModel):
4848
value_choices = None # type: Optional[List[ValueChoice]]
4949
""" (List[str]|None) Available dropdown choices for parameter. """
5050

51-
structured_value = None # type: Optional[str]
52-
""" (List[str]|None) List of structured values for a value. """
51+
structured_value = None # type: Optional[dict]
5352

5453
phase = None # type: Optional[str]
5554
""" (str|None) Param phase. """

0 commit comments

Comments
 (0)