diff options
| author | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-05-29 11:26:43 -0700 |
|---|---|---|
| committer | Victor Uriarte <victor.m.uriarte@intel.com> | 2016-05-29 12:50:20 -0700 |
| commit | af37d16bae4f1c96d3936771d74424d1d54ddf74 (patch) | |
| tree | 49b552a5848269659177037a221d7be1de0df2d2 /sqlparse/engine/__init__.py | |
| parent | 5d77addc60bccd5ea72781d8fd08ba6502e3ae47 (diff) | |
| download | sqlparse-af37d16bae4f1c96d3936771d74424d1d54ddf74.tar.gz | |
Fix flake8 styling
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 4d7fe88..1268bd1 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) |
