]> git.openstreetmap.org Git - nominatim.git/blobdiff - nominatim/db/properties.py
add type annotations to ICU tokenizer helper modules
[nominatim.git] / nominatim / db / properties.py
index 9dac2053ba6d6dbd2c92589f11f9948a798baf52..3624c950e4a158c6b4f7d8b6ab7d8f9cfbd6911c 100644 (file)
@@ -28,7 +28,7 @@ def set_property(conn: Connection, name: str, value: str) -> None:
 
 
 def get_property(conn: Connection, name: str) -> Optional[str]:
-    """ Return the current value of the given propery or None if the property
+    """ Return the current value of the given property or None if the property
         is not set.
     """
     if not conn.table_exists('nominatim_properties'):