We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 917d8e9 commit b87ae89Copy full SHA for b87ae89
sqlparse/filters/reindent.py
@@ -168,7 +168,8 @@ def _process_case(self, tlist):
168
def _process_default(self, tlist, stmts=True):
169
self._split_statements(tlist) if stmts else None
170
self._split_kwds(tlist)
171
- [self._process(sgroup) for sgroup in tlist.get_sublists()]
+ for sgroup in tlist.get_sublists():
172
+ self._process(sgroup)
173
174
def process(self, stmt):
175
self._curr_stmt = stmt
0 commit comments