We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b8f7356 commit a16326eCopy full SHA for a16326e
1 file changed
sqlparse/filters/reindent.py
@@ -140,7 +140,7 @@ def _process_identifierlist(self, tlist):
140
_, ws = tlist.token_next(
141
tlist.token_index(token), skip_ws=False)
142
if (ws is not None
143
- and not ws.ttype is T.Text.Whitespace):
+ and ws.ttype is not T.Text.Whitespace):
144
tlist.insert_after(
145
token, sql.Token(T.Whitespace, ' '))
146
position = 0
0 commit comments