From: Sarah Hoffmann Date: Mon, 8 Aug 2022 07:44:45 +0000 (+0200) Subject: remove mypy ignore for psutil.virtual_memory() X-Git-Tag: v4.2.0~41 X-Git-Url: https://git.openstreetmap.org./nominatim.git/commitdiff_plain/4fe797d704baf22fce369dd81f8bf598899a77af?hp=3c188164ab73fc3442db1e8979b86ef5503f6b32 remove mypy ignore for psutil.virtual_memory() Now available in typeshed. --- diff --git a/nominatim/tools/database_import.py b/nominatim/tools/database_import.py index fa60abf2..447e90f1 100644 --- a/nominatim/tools/database_import.py +++ b/nominatim/tools/database_import.py @@ -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: