1
0
Fork 0
mirror of synced 2025-07-03 03:47:20 +02:00

Remove pyflakes

Isn't borderline useless compared to mypy and pylint
This commit is contained in:
jvoisin 2022-11-21 19:42:31 +01:00
parent 618e0a8e39
commit 180ea24e5a
4 changed files with 1 additions and 18 deletions

View file

@ -11,9 +11,6 @@ from typing import Pattern, Union, Any
from . import abstract, UnknownMemberPolicy, parser_factory
# Make pyflakes happy
assert Pattern
# pylint: disable=not-callable,assignment-from-no-return,too-many-branches
# An ArchiveClass is a class representing an archive,

View file

@ -12,9 +12,6 @@ from .archive import ZipParser
# pylint: disable=line-too-long
# Make pyflakes happy
assert Pattern
def _parse_xml(full_path: str) -> tuple[ET.ElementTree, dict[str, str]]:
""" This function parses XML, with namespace support. """
namespace_map = dict()