Skip to content

Commit

Permalink
ignore some more pylint warnings in py 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
bpkroth committed Nov 22, 2024
1 parent ba70732 commit 240cb0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def ssh_test_server(
ssh_test_server_hostname: str,
docker_compose_project_name: str,
locked_docker_services: DockerServices,
) -> Generator[SshTestServerInfo, None, None]:
) -> Generator[SshTestServerInfo, None, None]: # pylint: disable=unnecessary-default-type-args
"""
Fixture for getting the ssh test server services setup via docker-compose using
pytest-docker.
Expand Down
6 changes: 3 additions & 3 deletions mlos_bench/mlos_bench/tests/storage/sql/fixtures.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def storage() -> SqlStorage:
def exp_storage(
storage: SqlStorage,
tunable_groups: TunableGroups,
) -> Generator[SqlStorage.Experiment, None, None]:
) -> Generator[SqlStorage.Experiment, None, None]: # pylint: disable=unnecessary-default-type-args
"""
Test fixture for Experiment using in-memory SQLite3 storage.
Expand All @@ -60,7 +60,7 @@ def exp_storage(
@pytest.fixture
def exp_no_tunables_storage(
storage: SqlStorage,
) -> Generator[SqlStorage.Experiment, None, None]:
) -> Generator[SqlStorage.Experiment, None, None]: # pylint: disable=unnecessary-default-type-args
"""
Test fixture for Experiment using in-memory SQLite3 storage.
Expand All @@ -84,7 +84,7 @@ def exp_no_tunables_storage(
def mixed_numerics_exp_storage(
storage: SqlStorage,
mixed_numerics_tunable_groups: TunableGroups,
) -> Generator[SqlStorage.Experiment, None, None]:
) -> Generator[SqlStorage.Experiment, None, None]: # pylint: disable=unnecessary-default-type-args
"""
Test fixture for an Experiment with mixed numerics tunables using in-memory SQLite3
storage.
Expand Down

0 comments on commit 240cb0b

Please sign in to comment.