remove remaining pylint hints

This commit is contained in:
Sarah Hoffmann
2024-11-10 22:49:29 +01:00
parent 1f07967787
commit 122ecd4626
10 changed files with 1 additions and 23 deletions

View File

@@ -7,9 +7,6 @@
"""
Subcommand definitions for the command-line tool.
"""
# mypy and pylint disagree about the style of explicit exports,
# see https://github.com/PyCQA/pylint/issues/6006.
# pylint: disable=useless-import-alias
from .setup import SetupAll as SetupAll
from .replication import UpdateReplication as UpdateReplication

View File

@@ -15,10 +15,6 @@ from ..errors import UsageError
from ..db.connection import connect, table_exists
from .args import NominatimArgs
# Do not repeat documentation of subcommand classes.
# pylint: disable=C0111
# Using non-top-level imports to avoid eventually unused imports.
# pylint: disable=E0012,C0415
LOG = logging.getLogger()
@@ -58,7 +54,6 @@ class AdminFuncs:
help='Analyse indexing of the given Nominatim object')
def run(self, args: NominatimArgs) -> int:
# pylint: disable=too-many-return-statements
if args.warm:
return self._warm(args)

View File

@@ -116,7 +116,6 @@ class UpdateReplication:
return update_interval
async def _update(self, args: NominatimArgs) -> None:
# pylint: disable=too-many-locals
from ..tools import replication
from ..indexer.indexer import Indexer
from ..tokenizer import factory as tokenizer_factory

View File

@@ -45,7 +45,6 @@ class SpecialPhraseLoader(Protocol):
class SPImporter():
# pylint: disable-msg=too-many-instance-attributes
"""
Class handling the process of special phrases importation into the database.