summaryrefslogtreecommitdiffstats
path: root/dash
diff options
context:
space:
mode:
authorLukas Metzger2020-07-02 11:41:28 +0200
committerLukas Metzger2020-07-02 11:41:28 +0200
commit240f40e30c6894805afbdae42daaefe16b456999 (patch)
treeb457cf98032105d2184199075646201ef21329ff /dash
parentFixed import script to use correct data (diff)
downloadbwlp-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.py2
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