1
0
Fork 0

Remove deprecated pylint checks

This commit is contained in:
jvoisin 2022-10-09 21:12:57 +02:00
parent b1a16b334f
commit 6d93cf9397
3 changed files with 4 additions and 5 deletions

View File

@ -72,20 +72,20 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser):
def _specific_cleanup(self, full_path: str) -> bool: def _specific_cleanup(self, full_path: str) -> bool:
""" This method can be used to apply specific treatment """ This method can be used to apply specific treatment
to files present in the archive.""" to files present in the archive."""
# pylint: disable=unused-argument,no-self-use # pylint: disable=unused-argument
return True # pragma: no cover return True # pragma: no cover
def _specific_get_meta(self, full_path: str, file_path: str) -> dict[str, Any]: def _specific_get_meta(self, full_path: str, file_path: str) -> dict[str, Any]:
""" This method can be used to extract specific metadata """ This method can be used to extract specific metadata
from files present in the archive.""" from files present in the archive."""
# pylint: disable=unused-argument,no-self-use # pylint: disable=unused-argument
return {} # pragma: no cover return {} # pragma: no cover
def _final_checks(self) -> bool: def _final_checks(self) -> bool:
""" This method is invoked after the file has been cleaned, """ This method is invoked after the file has been cleaned,
allowing to run final verifications. allowing to run final verifications.
""" """
# pylint: disable=unused-argument,no-self-use # pylint: disable=unused-argument
return True return True
@staticmethod @staticmethod

View File

@ -103,7 +103,6 @@ class _HTMLParser(parser.HTMLParser):
self.tag_required_blocklist = required_blocklisted_tags self.tag_required_blocklist = required_blocklisted_tags
self.tag_blocklist = blocklisted_tags self.tag_blocklist = blocklisted_tags
# pylint: disable=R0201
def error(self, message): # pragma: no cover def error(self, message): # pragma: no cover
""" Amusingly, Python's documentation doesn't mention that this """ Amusingly, Python's documentation doesn't mention that this
function needs to be implemented in subclasses of the parent class function needs to be implemented in subclasses of the parent class

View File

@ -10,7 +10,7 @@ so we're not allowed to call anything Gtk-related outside of the main
thread, so we'll have to resort to using a `queue` to pass "messages" around. thread, so we'll have to resort to using a `queue` to pass "messages" around.
""" """
# pylint: disable=no-name-in-module,unused-argument,no-self-use,import-error # pylint: disable=no-name-in-module,unused-argument,import-error
import queue import queue
import threading import threading