Skip to content

Commit 8dca041

Browse files
committed
Lint
1 parent 09f0aee commit 8dca041

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

domdf_python_tools/words.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,7 @@ class PluralPhrase(NamedTuple):
681681
template: str
682682
words: Tuple[Plural, ...]
683683

684-
def __call__(self, n: int) -> str: # noqa: TYP004 # TODO
684+
def __call__(self, n: int) -> str:
685685
"""
686686
Construct the phrase based on the value of ``n``.
687687

tests/test_paths_stdlib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from test.support.os_helper import TESTFN, can_symlink
3838
else:
3939
# stdlib
40-
from test.support import TESTFN, can_symlink # type: ignore[import-not-found]
40+
from test.support import TESTFN, can_symlink # type: ignore
4141

4242

4343
@pytest.fixture()

0 commit comments

Comments
 (0)