mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-22 22:01:31 +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
|
@property
|
||||||
def files(self):
|
def files(self):
|
||||||
return [self._relpath(file) for file in glob(join(self._workdir, '**/*'), recursive=True)
|
return [self._relpath(file) for file in glob(join(self._workdir, '**/*'), recursive=True)
|
||||||
if isfile(file) and
|
if isfile(file)
|
||||||
self._is_whitelisted(file) and
|
and self._is_whitelisted(file)
|
||||||
not any(fnmatchcase(file, blacklisted) for blacklisted in self.exclude)]
|
and not any(fnmatchcase(file, blacklisted) for blacklisted in self.exclude)]
|
||||||
|
|
||||||
@property
|
@property
|
||||||
def file_contents(self):
|
def file_contents(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user