From 77abecd805e7da1bf4e97d3d4ba7a9d449088325 Mon Sep 17 00:00:00 2001 From: Marshall Hallenbeck Date: Mon, 15 May 2023 22:04:04 -0400 Subject: [PATCH] fix indenting --- cme/protocols/ftp/database.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cme/protocols/ftp/database.py b/cme/protocols/ftp/database.py index b47837d6..4277c990 100644 --- a/cme/protocols/ftp/database.py +++ b/cme/protocols/ftp/database.py @@ -50,11 +50,11 @@ class database: FOREIGN KEY(hostid) REFERENCES hosts(id) )""") db_conn.execute("""CREATE TABLE "directory_listings" ( - "id" integer PRIMARY KEY, - "lir_id" integer, - "data" text, - FOREIGN KEY(lir_id) REFERENCES loggedin_relations(id) - )""") + "id" integer PRIMARY KEY, + "lir_id" integer, + "data" text, + FOREIGN KEY(lir_id) REFERENCES loggedin_relations(id) + )""") def reflect_tables(self): with self.db_engine.connect():