mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-13 05:07:38 +02:00
Codebase: Apply yapf clean-up across the codebase
This commit is contained in:
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user