diff options
| author | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 20:14:18 +0100 |
|---|---|---|
| committer | Andi Albrecht <albrecht.andi@gmail.com> | 2015-10-26 20:14:18 +0100 |
| commit | 1992f6deff983f7a3332142da5c49e82544bd1ac (patch) | |
| tree | d76351e66f2502257bf81bdbefcf4fb6fa9c01fe /sqlparse/engine/__init__.py | |
| parent | f7e07b7b61be4befd5eaafce93aeb0238c884315 (diff) | |
| download | sqlparse-1992f6deff983f7a3332142da5c49e82544bd1ac.tar.gz | |
Cleanup module code.
Diffstat (limited to 'sqlparse/engine/__init__.py')
| -rw-r--r-- | sqlparse/engine/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sqlparse/engine/__init__.py b/sqlparse/engine/__init__.py index 62c82b8..4d7fe88 100644 --- a/sqlparse/engine/__init__.py +++ b/sqlparse/engine/__init__.py @@ -43,8 +43,8 @@ class FilterStack(object): for filter_ in self.preprocess: stream = filter_.process(self, stream) - if (self.stmtprocess or self.postprocess or self.split_statements - or self._grouping): + if self.stmtprocess or self.postprocess or self.split_statements \ + or self._grouping: splitter = StatementFilter() stream = splitter.process(self, stream) |
