Implementation of the 'freeze' subcommand.
"""
-from ..db.connection import connect
+from nominatim.db.connection import connect
# Do not repeat documentation of subcommand classes.
# pylint: disable=C0111
with connect(args.config.get_libpq_dsn()) as conn:
freeze.drop_update_tables(conn)
- freeze.drop_flatnode_file(args.config.FLATNODE_FILE)
+ freeze.drop_flatnode_file(str(args.config.get_path('FLATNODE_FILE')))
return 0