Add mypy error codes to '# type: ignore' comments (#6379)

This commit is contained in:
Akuli
2021-11-26 08:07:56 +02:00
committed by GitHub
parent 1278fa86e2
commit a5bc1e037f
74 changed files with 218 additions and 202 deletions

View File

@@ -36,7 +36,7 @@ class TimezoneComponent(Component):
normal_attributes: Any
@staticmethod
def pickTzid(tzinfo, allowUTC: bool = ...): ...
def prettyPrint(self, level, tabwidth) -> None: ... # type: ignore
def prettyPrint(self, level, tabwidth) -> None: ... # type: ignore[override]
class RecurringComponent(Component):
isNative: bool

View File

@@ -78,7 +78,7 @@ class Photo(VCardTextBehavior):
@classmethod
def valueRepr(cls, line): ...
@classmethod
def serialize(cls, obj, buf, lineLength, validate) -> None: ... # type: ignore
def serialize(cls, obj, buf, lineLength, validate) -> None: ... # type: ignore[override]
def toListOrString(string): ...
def splitFields(string): ...