We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 09f0aee commit 8dca041Copy full SHA for 8dca041
domdf_python_tools/words.py
@@ -681,7 +681,7 @@ class PluralPhrase(NamedTuple):
681
template: str
682
words: Tuple[Plural, ...]
683
684
- def __call__(self, n: int) -> str: # noqa: TYP004 # TODO
+ def __call__(self, n: int) -> str:
685
"""
686
Construct the phrase based on the value of ``n``.
687
tests/test_paths_stdlib.py
@@ -37,7 +37,7 @@
37
from test.support.os_helper import TESTFN, can_symlink
38
else:
39
# stdlib
40
- from test.support import TESTFN, can_symlink # type: ignore[import-not-found]
+ from test.support import TESTFN, can_symlink # type: ignore
41
42
43
@pytest.fixture()
0 commit comments