Skip to content

Commit

Permalink
Fix missing type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
ento committed Oct 16, 2023
1 parent f5bd8b9 commit 804d16f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/utils/test_setup_reader.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ def test_setup_reader_read_minimal_setup_py(setup: Callable[[str], Path]) -> Non
expected_name = None
expected_version = None
expected_description = None
expected_install_requires = []
expected_extras_require = {}
expected_install_requires: list[str] = []
expected_extras_require: dict[str, list[str]] = {}
expected_python_requires = None

assert result["name"] == expected_name
Expand Down Expand Up @@ -160,8 +160,8 @@ def test_setup_reader_read_minimal_setup_cfg(setup: Callable[[str], Path]) -> No
expected_name = None
expected_version = None
expected_description = None
expected_install_requires = []
expected_extras_require = {}
expected_install_requires: list[str] = []
expected_extras_require: dict[str, list[str]] = {}
expected_python_requires = None

assert result["name"] == expected_name
Expand Down

0 comments on commit 804d16f

Please sign in to comment.