diff options
author | Lukas Metzger | 2020-07-02 11:41:28 +0200 |
---|---|---|
committer | Lukas Metzger | 2020-07-02 11:41:28 +0200 |
commit | 240f40e30c6894805afbdae42daaefe16b456999 (patch) | |
tree | b457cf98032105d2184199075646201ef21329ff /dash | |
parent | Fixed import script to use correct data (diff) | |
download | bwlp-statistics-240f40e30c6894805afbdae42daaefe16b456999.tar.gz bwlp-statistics-240f40e30c6894805afbdae42daaefe16b456999.tar.xz bwlp-statistics-240f40e30c6894805afbdae42daaefe16b456999.zip |
Remove unneccessary debug output
Diffstat (limited to 'dash')
-rw-r--r-- | dash/pages/satellites.py | 2 |
1 files changed, 0 insertions, 2 deletions
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 |