Skip to content

Commit

Permalink
Fix inconsistent ctor signature for roborock
Browse files Browse the repository at this point in the history
  • Loading branch information
rytilahti committed Nov 28, 2022
1 parent 1756fbc commit 019933a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion miio/integrations/vacuum/roborock/vacuum.py
Original file line number Diff line number Diff line change
Expand Up @@ -126,10 +126,14 @@ def __init__(
token: str = None,
start_id: int = 0,
debug: int = 0,
lazy_discover: bool = True,
timeout: int = None,
*,
model=None,
):
super().__init__(ip, token, start_id, debug, model=model)
super().__init__(
ip, token, start_id, debug, lazy_discover, timeout, model=model
)
self.manual_seqnum = -1

@command()
Expand Down

0 comments on commit 019933a

Please sign in to comment.