Skip to content
Snippets Groups Projects
Commit 0c7530e8 authored by Nate Coraor's avatar Nate Coraor
Browse files

Lint

parent 45f28bac
No related branches found
No related tags found
3 merge requests!44Try to fix CI.,!38Generalize orchestrated container scheduling.,!22update Pulsar to 0.15.3
......@@ -94,7 +94,7 @@ def _get_manager_modules():
managers_dir = pulsar.managers.__path__[0]
module_names = []
for fname in os.listdir(managers_dir):
if not (fname.startswith("_")) and fname.endswith(".py"):
if not fname.startswith("_") and fname.endswith(".py"):
manager_module_name = "pulsar.managers.%s" % fname[:-len(".py")]
module_names.append(manager_module_name)
return module_names
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment