remove remaining pylint hints

This commit is contained in:
Sarah Hoffmann
2024-11-10 22:49:29 +01:00
parent 1f07967787
commit 122ecd4626
10 changed files with 1 additions and 23 deletions

View File

@@ -14,7 +14,7 @@ import importlib
from .server.content_types import CONTENT_JSON
T = TypeVar('T') # pylint: disable=invalid-name
T = TypeVar('T')
FormatFunc = Callable[[T, Mapping[str, Any]], str]
ErrorFormatFunc = Callable[[str, str, int], str]