]> git.openstreetmap.org Git - nominatim.git/commitdiff
export UsageError and Configuration in api directly
authorSarah Hoffmann <lonvia@denofr.de>
Wed, 12 Jun 2024 08:27:10 +0000 (10:27 +0200)
committerSarah Hoffmann <lonvia@denofr.de>
Wed, 26 Jun 2024 09:52:47 +0000 (11:52 +0200)
Library users should not have to deal with the core package directly.

src/nominatim_api/__init__.py
src/nominatim_core/config.py

index 3ffe0c27fafc7e2b982103071ca8f0dfdc83792e..0f02f979d6e1c4a159d5b8bf38ecaa4af10d81ed 100644 (file)
@@ -14,6 +14,9 @@ import from this file, not from the source files directly.
 # See also https://github.com/PyCQA/pylint/issues/6006
 # pylint: disable=useless-import-alias
 
 # See also https://github.com/PyCQA/pylint/issues/6006
 # pylint: disable=useless-import-alias
 
+from nominatim_core.errors import (UsageError as UsageError)
+from nominatim_core.config import (Configuration as Configuration)
+
 from .core import (NominatimAPI as NominatimAPI,
                    NominatimAPIAsync as NominatimAPIAsync)
 from .connection import (SearchConnection as SearchConnection)
 from .core import (NominatimAPI as NominatimAPI,
                    NominatimAPIAsync as NominatimAPIAsync)
 from .connection import (SearchConnection as SearchConnection)
index 5393b543e01dd0e09cdc49fd5b1f4f3f3200a2b8..f4c925eb48636a2bf37ec693655646bcadb0cfa3 100644 (file)
@@ -2,7 +2,7 @@
 #
 # This file is part of Nominatim. (https://nominatim.org)
 #
 #
 # This file is part of Nominatim. (https://nominatim.org)
 #
-# Copyright (C) 2022 by the Nominatim developer community.
+# Copyright (C) 2024 by the Nominatim developer community.
 # For a full list of authors see the git log.
 """
 Nominatim configuration accessor.
 # For a full list of authors see the git log.
 """
 Nominatim configuration accessor.