Skip to content

Commit

Permalink
fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
mykola-mokhnach committed Oct 3, 2024
1 parent 217b701 commit c8d067b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appium/webdriver/appium_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def start(self, **kwargs: Any) -> sp.Popen:
raise AppiumServiceError(error_msg)
return self._process

def stop(self, timeout=5.5) -> bool:
def stop(self, timeout: float = 5.5) -> bool:
"""Stops Appium service if it is running.
The call will be ignored if the service is not running
Expand Down

0 comments on commit c8d067b

Please sign in to comment.