Skip to content

Commit

Permalink
Added missing return types to functions
Browse files Browse the repository at this point in the history
  • Loading branch information
robbe-haesendonck committed Sep 29, 2023
1 parent 51f0a6f commit 8ac35ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nominatim/tools/database_import.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ def _require_version(module: str, actual: Tuple[int, int], expected: Tuple[int,
raise UsageError(f'{module} is too old.')


def _require_loaded(extension_name: str, conn: Connection):
def _require_loaded(extension_name: str, conn: Connection) -> None:
""" Check that the given extension is loaded. """
if not conn.extension_loaded(extension_name):
LOG.fatal('Required module %s is not loaded.', extension_name)
raise UsageError(f'{extension_name} is not loaded.')


def check_existing_database_plugins(dsn: str):
def check_existing_database_plugins(dsn: str) -> None:
""" Check that the database has the required plugins installed."""
with connect(dsn) as conn:
_require_version('PostgreSQL server',
Expand Down

0 comments on commit 8ac35ef

Please sign in to comment.