1 # SPDX-License-Identifier: GPL-3.0-or-later
3 # This file is part of Nominatim. (https://nominatim.org)
5 # Copyright (C) 2023 by the Nominatim developer community.
6 # For a full list of authors see the git log.
8 Module with custom types for SQLAlchemy
11 # See also https://github.com/PyCQA/pylint/issues/6006
12 # pylint: disable=useless-import-alias
14 from .geometry import (Geometry as Geometry)
15 from .int_array import (IntArray as IntArray)
16 from .key_value import (KeyValueStore as KeyValueStore)
17 from .json import (Json as Json)