]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_db/db/properties.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_db / db / properties.py
index 3549382f944ad9e7f998b08190d2190b9c124d97..37d9e6564810333427a0961de074f1adedf8849a 100644 (file)
@@ -9,7 +9,8 @@ Query and access functions for the in-database property table.
 """
 from typing import Optional, cast
 
-from .connection import Connection
+from .connection import Connection, table_exists
+
 
 def set_property(conn: Connection, name: str, value: str) -> None:
     """ Add or replace the property with the given name.
@@ -31,7 +32,7 @@ def get_property(conn: Connection, name: str) -> Optional[str]:
     """ Return the current value of the given property or None if the property
         is not set.
     """
-    if not conn.table_exists('nominatim_properties'):
+    if not table_exists(conn, 'nominatim_properties'):
         return None
 
     with conn.cursor() as cur: