We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23c5c02 commit 1b43121Copy full SHA for 1b43121
dfetch/manifest/manifest.py
@@ -340,12 +340,12 @@ class ManifestDumper(yaml.SafeDumper): # pylint: disable=too-many-ancestors
340
341
def write_line_break(self, data: Any = None) -> None:
342
"""Write a line break."""
343
- super().write_line_break(data) # type: ignore
+ super().write_line_break(data) # type: ignore[unused-ignore]
344
345
if len(self.indents) == 2 and getattr(self.event, "value", "") != "version":
346
- super().write_line_break() # type: ignore
+ super().write_line_break() # type: ignore[unused-ignore]
347
348
if len(self.indents) == 3 and self._last_additional_break != 2:
349
350
351
self._last_additional_break = len(self.indents)
0 commit comments