Skip to content

Commit 9a924cd

Browse files
committed
remove spaces from print functions
1 parent 09203c6 commit 9a924cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

debug_toolbar/management/commands/debugsqlshell.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ def execute(self, sql, params=()):
1616
finally:
1717
raw_sql = self.db.ops.last_executed_query(self.cursor, sql, params)
1818
execution_time = datetime.now() - starttime
19-
print( sqlparse.format(raw_sql, reindent=True),)
20-
print( ' [%.2fms]' % (ms_from_timedelta(execution_time),))
19+
print(sqlparse.format(raw_sql, reindent=True),)
20+
print(' [%.2fms]' % (ms_from_timedelta(execution_time),))
2121
print()
2222

2323
util.CursorDebugWrapper = PrintQueryWrapper

0 commit comments

Comments
 (0)