From 240f40e30c6894805afbdae42daaefe16b456999 Mon Sep 17 00:00:00 2001 From: Lukas Metzger Date: Thu, 2 Jul 2020 11:41:28 +0200 Subject: Remove unneccessary debug output --- dash/pages/satellites.py | 2 -- 1 file changed, 2 deletions(-) (limited to 'dash') diff --git a/dash/pages/satellites.py b/dash/pages/satellites.py index 0b02f5e..ba607ba 100644 --- a/dash/pages/satellites.py +++ b/dash/pages/satellites.py @@ -46,7 +46,6 @@ def layout(): Output('satellites-table', 'data'), [Input('satellites-table', "sort_by")]) def load_table(sort): - print(sort) dbcon = db.getConnection() cursor = dbcon.cursor() @@ -65,7 +64,6 @@ def load_table(sort): } sortstr = 'ORDER BY ' + mappings[sort[0]['column_id']] + ' ' sortstr += 'ASC' if sort[0]['direction'] == 'asc' else ' DESC' - print(sortstr) cursor.execute(""" SELECT -- cgit v1.2.3-55-g7522