summaryrefslogtreecommitdiff
path: root/sqlparse/sql.py
diff options
context:
space:
mode:
authorKevin Boyette <kevinxboyette@gmail.com>2018-07-17 19:05:04 -0400
committerAndi Albrecht <albrecht.andi@gmail.com>2018-07-28 09:02:47 +0200
commit5e1d5e234bf2a45881c63c24702bb02d4456db3e (patch)
tree5a75e94ea9ed1df58f113cad418544edf0209fb4 /sqlparse/sql.py
parent8bf78a086f540fc22f0e155031f063a93ce1d4a8 (diff)
downloadsqlparse-5e1d5e234bf2a45881c63c24702bb02d4456db3e.tar.gz
Fix Failing Build - Flake8
Diffstat (limited to 'sqlparse/sql.py')
-rw-r--r--sqlparse/sql.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/sql.py b/sqlparse/sql.py
index 1e24014..f10e695 100644
--- a/sqlparse/sql.py
+++ b/sqlparse/sql.py
@@ -531,8 +531,8 @@ class Where(TokenList):
M_CLOSE = T.Keyword, (
'ORDER', 'GROUP', 'LIMIT', 'UNION', 'UNION ALL', 'EXCEPT',
'HAVING', 'RETURNING', 'INTO')
-
-
+
+
class Having(TokenList):
"""A HAVING clause."""
M_OPEN = T.Keyword, 'HAVING'