Skip to content

Commit

Permalink
Make more gateway params optional (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
iMicknl authored Feb 1, 2021
1 parent 63ad4d1 commit ecfb9b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyhoma/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -363,12 +363,12 @@ def __init__(
functions: Optional[str] = None,
sub_type: GatewaySubType,
gateway_id: str,
alive: bool,
alive: Optional[bool] = None,
mode: str,
placeoid: str,
time_reliable: bool,
connectivity: Dict[str, Any],
up_to_date: bool,
up_to_date: Optional[bool] = None,
update_status: UpdateBoxStatus,
sync_in_progress: bool,
type: GatewayType,
Expand Down

0 comments on commit ecfb9b6

Please sign in to comment.