Fix invalid noqa comments and poorly formatted type ignores (#11497)

This commit is contained in:
Avasam
2024-02-29 01:27:07 -05:00
committed by GitHub
parent 5e9589dd75
commit c75ecf0bca
21 changed files with 43 additions and 43 deletions

View File

@@ -63,7 +63,7 @@ class TranslationString(str):
mapping: dict[str, Any] | None = None,
context: str | None = None,
) -> Self: ...
def __mod__(self, options: dict[str, Any]) -> TranslationString: ... # type:ignore[override]
def __mod__(self, options: dict[str, Any]) -> TranslationString: ... # type: ignore[override]
def interpolate(self, translated: str | None = None) -> str: ...
def __reduce__(self) -> tuple[type[Self], tuple[str, str | None, str, dict[str, Any], str | None]]: ...