X-Git-Url: https://git.openstreetmap.org./nominatim.git/blobdiff_plain/a21d4d3ac483d34355efae76f77b01ad3b48407a..67cfad6a2c3300783695e7cd9f6f4191d5630e5b:/nominatim/tools/database_import.py diff --git a/nominatim/tools/database_import.py b/nominatim/tools/database_import.py index eda01013..447e90f1 100644 --- a/nominatim/tools/database_import.py +++ b/nominatim/tools/database_import.py @@ -82,7 +82,7 @@ def setup_database_skeleton(dsn: str, rouser: Optional[str] = None) -> None: POSTGIS_REQUIRED_VERSION) -def import_osm_data(osm_files: Union[str, Sequence[str]], +def import_osm_data(osm_files: Union[Path, Sequence[Path]], options: MutableMapping[str, Any], drop: bool = False, ignore_errors: bool = False) -> None: """ Import the given OSM files. 'options' contains the list of @@ -95,7 +95,7 @@ def import_osm_data(osm_files: Union[str, Sequence[str]], if not options['flatnode_file'] and options['osm2pgsql_cache'] == 0: # Make some educated guesses about cache size based on the size # of the import file and the available memory. - mem = psutil.virtual_memory() # type: ignore[no-untyped-call] + mem = psutil.virtual_memory() fsize = 0 if isinstance(osm_files, list): for fname in osm_files: