]> git.openstreetmap.org Git - nominatim.git/blobdiff - src/nominatim_db/tools/freeze.py
fix style issue found by flake8
[nominatim.git] / src / nominatim_db / tools / freeze.py
index c4eedb43262029424b120072576de0e061b32d86..a308d0eb4572c936e8566bc00d43e52c39968f6e 100644 (file)
@@ -28,6 +28,7 @@ UPDATE_TABLES = [
     'wikipedia_%'
 ]
 
+
 def drop_update_tables(conn: Connection) -> None:
     """ Drop all tables only necessary for updating the database from
         OSM replication data.
@@ -49,8 +50,8 @@ def drop_flatnode_file(fpath: Optional[Path]) -> None:
     if fpath and fpath.exists():
         fpath.unlink()
 
+
 def is_frozen(conn: Connection) -> bool:
     """ Returns true if database is in a frozen state
     """
-
     return table_exists(conn, 'place') is False