[cleanup] removing print() artefacts (#3683)

This commit is contained in:
Maxime Beauchemin 2017-10-23 15:48:47 -07:00 committed by GitHub
parent b4bdc45a6b
commit 58ea736ed6
1 changed files with 0 additions and 3 deletions

View File

@ -517,9 +517,6 @@ class SqlaTable(Model, BaseDatasource):
for col, ascending in orderby:
direction = asc if ascending else desc
print('-='*20)
print([col, ascending])
print('-='*20)
qry = qry.order_by(direction(col))
if row_limit: