yapf -rip
This commit is contained in:
parent
f332c03217
commit
322e10d1bd
1 changed files with 2 additions and 3 deletions
|
@ -288,9 +288,8 @@ class PluginManager(object):
|
||||||
except OSError:
|
except OSError:
|
||||||
pass
|
pass
|
||||||
plugins_files = [
|
plugins_files = [
|
||||||
name[:-3] for name in names
|
name[:-3] for name in names if name.endswith('.py')
|
||||||
if name.endswith('.py') and name != '__init__.py'
|
and name != '__init__.py' and not name.startswith('.')
|
||||||
and not name.startswith('.')
|
|
||||||
]
|
]
|
||||||
plugins_files.sort()
|
plugins_files.sort()
|
||||||
position = the_input.get_argument_position(quoted=False)
|
position = the_input.get_argument_position(quoted=False)
|
||||||
|
|
Loading…
Reference in a new issue