Skip to content

Commit

Permalink
'Solution_v1.06'
Browse files Browse the repository at this point in the history
  • Loading branch information
DmytroPieskov committed Nov 10, 2024
1 parent df7199e commit 3f29323
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def __set__(self, instance: object, value: int) -> None:


class Visitor:
age = IntegerRange(min_amount=4, max_amount=60)
height = IntegerRange(min_amount=80, max_amount=220)
weight = IntegerRange(min_amount=20, max_amount=120)
# age = IntegerRange(min_amount=4, max_amount=60)
# height = IntegerRange(min_amount=80, max_amount=220)
# weight = IntegerRange(min_amount=20, max_amount=120)

def __init__(self, name: str, age: int, weight: int, height: int) -> None:
self.name = name
Expand Down

0 comments on commit 3f29323

Please sign in to comment.