From bd84e4fe06215026b36fd3aec2c4cbb28f89f5c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Krist=C3=B3f=20T=C3=B3th?= Date: Thu, 5 Apr 2018 17:19:56 +0200 Subject: [PATCH] Improve code formatting in webide --- lib/tfw/components/source_code_event_handler.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/tfw/components/source_code_event_handler.py b/lib/tfw/components/source_code_event_handler.py index 6afcf63..fbaffd8 100644 --- a/lib/tfw/components/source_code_event_handler.py +++ b/lib/tfw/components/source_code_event_handler.py @@ -65,9 +65,9 @@ class FileManager: # pylint: disable=too-many-instance-attributes @property def files(self): return [self._relpath(file) for file in glob(join(self._workdir, '**/*'), recursive=True) - if isfile(file) and - self._is_whitelisted(file) and - not any(fnmatchcase(file, blacklisted) for blacklisted in self.exclude)] + if isfile(file) + and self._is_whitelisted(file) + and not any(fnmatchcase(file, blacklisted) for blacklisted in self.exclude)] @property def file_contents(self):