mirror of
https://github.com/osm-search/Nominatim.git
synced 2026-02-26 11:08:13 +00:00
remove mypy ignore for psutil.virtual_memory()
Now available in typeshed.
This commit is contained in:
@@ -95,7 +95,7 @@ def import_osm_data(osm_files: Union[Path, Sequence[Path]],
|
|||||||
if not options['flatnode_file'] and options['osm2pgsql_cache'] == 0:
|
if not options['flatnode_file'] and options['osm2pgsql_cache'] == 0:
|
||||||
# Make some educated guesses about cache size based on the size
|
# Make some educated guesses about cache size based on the size
|
||||||
# of the import file and the available memory.
|
# of the import file and the available memory.
|
||||||
mem = psutil.virtual_memory() # type: ignore[no-untyped-call]
|
mem = psutil.virtual_memory()
|
||||||
fsize = 0
|
fsize = 0
|
||||||
if isinstance(osm_files, list):
|
if isinstance(osm_files, list):
|
||||||
for fname in osm_files:
|
for fname in osm_files:
|
||||||
|
|||||||
Reference in New Issue
Block a user