Skip to content

Commit

Permalink
build(deps-dev): bump pylint from 3.2.7 to 3.3.0 (#898)
Browse files Browse the repository at this point in the history
* build(deps-dev): bump pylint from 3.2.7 to 3.3.0

Bumps [pylint](https://github.com/pylint-dev/pylint) from 3.2.7 to 3.3.0.
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.2.7...v3.3.0)

---
updated-dependencies:
- dependency-name: pylint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix ci

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Aaron Bach <[email protected]>
  • Loading branch information
dependabot[bot] and bachya authored Sep 25, 2024
1 parent aa69d21 commit bc44087
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
18 changes: 9 additions & 9 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 bc44087

Please sign in to comment.