Core: Apply yapf across all files again.

This commit is contained in:
Mike Auty
2020-05-05 22:14:33 +01:00
parent 4587de356d
commit 0c43beb42d
30 changed files with 146 additions and 113 deletions
+6 -6
View File
@@ -59,12 +59,12 @@ class PsList(interfaces.plugins.PluginInterface):
yield (0, (pid, ppid, name))
@classmethod
def list_tasks(cls,
context: interfaces.context.ContextInterface,
layer_name: str,
vmlinux_symbols: str,
filter_func: Callable[[int], bool] = lambda _: False
) -> Iterable[interfaces.objects.ObjectInterface]:
def list_tasks(
cls,
context: interfaces.context.ContextInterface,
layer_name: str,
vmlinux_symbols: str,
filter_func: Callable[[int], bool] = lambda _: False) -> Iterable[interfaces.objects.ObjectInterface]:
"""Lists all the tasks in the primary layer.
Args: