]> git.openstreetmap.org Git - nominatim.git/commitdiff
remove mypy ignore for psutil.virtual_memory()
authorSarah Hoffmann <lonvia@denofr.de>
Mon, 8 Aug 2022 07:44:45 +0000 (09:44 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Sat, 19 Nov 2022 14:39:09 +0000 (15:39 +0100)
Now available in typeshed.

nominatim/tools/database_import.py

index fa60abf22a60ed7f1aad9eceebbfa2a61b1450d8..447e90f1d5c7d547ced545a1fcad6a4958ceb317 100644 (file)
@@ -95,7 +95,7 @@ def import_osm_data(osm_files: Union[Path, Sequence[Path]],
     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: