Skip to content

Commit a16326e

Browse files
committed
Fix flake8 warnings.
1 parent b8f7356 commit a16326e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sqlparse/filters/reindent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def _process_identifierlist(self, tlist):
140140
_, ws = tlist.token_next(
141141
tlist.token_index(token), skip_ws=False)
142142
if (ws is not None
143-
and not ws.ttype is T.Text.Whitespace):
143+
and ws.ttype is not T.Text.Whitespace):
144144
tlist.insert_after(
145145
token, sql.Token(T.Whitespace, ' '))
146146
position = 0

0 commit comments

Comments
 (0)