]> git.openstreetmap.org Git - nominatim.git/commitdiff
restrict return type more
authorSarah Hoffmann <lonvia@denofr.de>
Sun, 3 Jul 2022 15:21:46 +0000 (17:21 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Mon, 18 Jul 2022 07:47:57 +0000 (09:47 +0200)
nominatim/db/connection.py

index 729e8a700761843ea33e36f7630482cc063faa72..8d9c742aaab9568be88c9c25b3ae75e2445ef710 100644 (file)
@@ -7,7 +7,7 @@
 """
 Specialised connection and cursor functions.
 """
-from typing import List, Optional, Any, Callable, ContextManager, Mapping, cast, overload, Tuple
+from typing import List, Optional, Any, Callable, ContextManager, Dict, Mapping, cast, overload, Tuple
 import contextlib
 import logging
 import os
@@ -225,7 +225,7 @@ _PG_CONNECTION_STRINGS = {
 
 
 def get_pg_env(dsn: str,
-               base_env: Optional[Mapping[str, str]] = None) -> Mapping[str, str]:
+               base_env: Optional[Mapping[str, str]] = None) -> Dict[str, str]:
     """ Return a copy of `base_env` with the environment variables for
         PostgresSQL set up from the given database connection string.
         If `base_env` is None, then the OS environment is used as a base