mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-22 18:01:33 +00:00
Improve code formatting in webide
This commit is contained in:
parent
bc340e2e19
commit
bd84e4fe06
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user