avoid issues with Python < 3.9 and linting

This commit is contained in:
Sarah Hoffmann
2022-07-03 11:33:19 +02:00
parent f22fa992f7
commit 681aad7e0d
2 changed files with 4 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ from nominatim.errors import UsageError
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:
assert proc.stdin is not None
chunk = fdesc.read(2048)