From b2dc01ad81e4b91c53e73a695edc5731a52b5aaa Mon Sep 17 00:00:00 2001 From: Sarah Hoffmann Date: Fri, 27 Sep 2024 20:19:37 +0200 Subject: [PATCH] Revert "work round typing bug in pyosmium 4.0" This reverts commit f960a9bf7fd1702b3d66995dd69307bd91d61a08. --- src/nominatim_db/tools/replication.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/nominatim_db/tools/replication.py b/src/nominatim_db/tools/replication.py index 91171deb..eb031f39 100644 --- a/src/nominatim_db/tools/replication.py +++ b/src/nominatim_db/tools/replication.py @@ -125,8 +125,7 @@ def update(dsn: str, options: MutableMapping[str, Any], # Read updates into file. with _make_replication_server(options['base_url'], socket_timeout) as repl: outhandler = WriteHandler(str(options['import_file'])) - # tyoing: work around typing bug in pyosmium 4.0 - endseq = repl.apply_diffs(outhandler, startseq + 1, # type: ignore[arg-type] + endseq = repl.apply_diffs(outhandler, startseq + 1, max_size=options['max_diff_size'] * 1024) outhandler.close()