]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_db/tools/replication.py
Revert "work round typing bug in pyosmium 4.0"
[nominatim.git] / src / nominatim_db / tools / replication.py
index 91171deb8cad626a4b64e1ba0bb5a9c95b5aa0ac..eb031f390221c4dcea846f9d12999995ddb38011 100644 (file)
@@ -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()