Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Add missing types to test_state. #14985

Merged
merged 8 commits into from
Feb 6, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/14985.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Improve type hints.
4 changes: 3 additions & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ exclude = (?x)
|tests/module_api/test_api.py
|tests/rest/media/v1/test_media_storage.py
|tests/server.py
|tests/test_state.py
|tests/test_terms_auth.py
)$

Expand Down Expand Up @@ -110,6 +109,9 @@ disallow_untyped_defs = True
[mypy-tests.test_server]
disallow_untyped_defs = True

[mypy-tests.test_state]
disallow_untyped_defs = True

[mypy-tests.types.*]
disallow_untyped_defs = True

Expand Down
Loading