Codebase: Apply yapf clean-up across the codebase

This commit is contained in:
Mike Auty
2020-10-29 09:43:16 +00:00
committed by ikelos
parent f58c115727
commit 29cb430a72
11 changed files with 44 additions and 57 deletions
@@ -26,9 +26,9 @@ class FrameworkInfo(plugins.PluginInterface):
}
for category, module_interface in categories.items():
yield (0, (category,))
yield (0, (category, ))
for clazz in framework.class_subclasses(module_interface):
yield (1, (clazz.__name__,))
yield (1, (clazz.__name__, ))
def run(self):
return renderers.TreeGrid([("Data", str)], self._generator())