mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
avoid issues with Python < 3.9 and linting
This commit is contained in:
@@ -11,6 +11,8 @@ ignored-modules=icu,datrie
|
|||||||
# 'with' statements.
|
# 'with' statements.
|
||||||
ignored-classes=NominatimArgs,closing
|
ignored-classes=NominatimArgs,closing
|
||||||
# 'too-many-ancestors' is triggered already by deriving from UserDict
|
# 'too-many-ancestors' is triggered already by deriving from UserDict
|
||||||
disable=too-few-public-methods,duplicate-code,too-many-ancestors,bad-option-value,no-self-use
|
# 'not-context-manager' disabled because it causes false positives once
|
||||||
|
# typed Python is enabled. See also https://github.com/PyCQA/pylint/issues/5273
|
||||||
|
disable=too-few-public-methods,duplicate-code,too-many-ancestors,bad-option-value,no-self-use,not-context-manager
|
||||||
|
|
||||||
good-names=i,x,y,fd,db,cc
|
good-names=i,x,y,fd,db,cc
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ from nominatim.errors import UsageError
|
|||||||
|
|
||||||
LOG = logging.getLogger()
|
LOG = logging.getLogger()
|
||||||
|
|
||||||
def _pipe_to_proc(proc: subprocess.Popen[bytes],
|
def _pipe_to_proc(proc: 'subprocess.Popen[bytes]',
|
||||||
fdesc: Union[IO[bytes], gzip.GzipFile]) -> int:
|
fdesc: Union[IO[bytes], gzip.GzipFile]) -> int:
|
||||||
assert proc.stdin is not None
|
assert proc.stdin is not None
|
||||||
chunk = fdesc.read(2048)
|
chunk = fdesc.read(2048)
|
||||||
|
|||||||
Reference in New Issue
Block a user