From af37d16bae4f1c96d3936771d74424d1d54ddf74 Mon Sep 17 00:00:00 2001 From: Victor Uriarte Date: Sun, 29 May 2016 11:26:43 -0700 Subject: Fix flake8 styling --- sqlparse/engine/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sqlparse/engine/__init__.py') 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) -- cgit v1.2.1