reformatting

This commit is contained in:
scopesorting 2023-11-04 10:14:10 +01:00
parent 4ebdce2a89
commit c7662d4188

View File

@ -26,7 +26,7 @@ class SQLHandler():
with self.sql_connection.cursor(buffered=True) as cursor:
cursor.execute("SHOW TABLES")
schema = cursor.fetchall()
all_schemas = [schem[0] for schem in schema]
all_schemas = [schem[0] for schem in schema]
return all_schemas
def build_str_to_model_dict(self):