Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
bachya committed Sep 25, 2024
1 parent aa2effd commit b39c151
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ def auth_check_response_fixture() -> dict[str, Any]:
@pytest.fixture(name="authenticated_simplisafe_server")
def authenticated_simplisafe_server_fixture(
api_token_response: dict[str, Any], auth_check_response: dict[str, Any]
) -> Generator[ResponsesMockServer, None, None]:
) -> Generator[ResponsesMockServer]:
"""Define a fixture that returns an authenticated API connection.
Args:
Expand Down Expand Up @@ -74,7 +74,7 @@ def authenticated_simplisafe_server_v2_fixture(
authenticated_simplisafe_server: ResponsesMockServer,
v2_settings_response: dict[str, Any],
v2_subscriptions_response: dict[str, Any],
) -> Generator[ResponsesMockServer, None, None]:
) -> Generator[ResponsesMockServer]:
"""Define a fixture that returns an authenticated API connection to a V2 system.
Args:
Expand Down Expand Up @@ -105,7 +105,7 @@ def authenticated_simplisafe_server_v3_fixture(
subscriptions_response: dict[str, Any],
v3_sensors_response: dict[str, Any],
v3_settings_response: dict[str, Any],
) -> Generator[ResponsesMockServer, None, None]:
) -> Generator[ResponsesMockServer]:
"""Define a fixture that returns an authenticated API connection to a V3 system.
Args:
Expand Down
1 change: 1 addition & 0 deletions tests/system/test_base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Define base tests for System objects."""
# pylint: disable=too-many-positional-arguments

from datetime import datetime
from typing import Any, cast
Expand Down

0 comments on commit b39c151

Please sign in to comment.