Unverified Commit 1d319855 authored by Chaseldot's avatar Chaseldot Committed by GitHub
Browse files

[Fix] base.py change status into list (#994)

parent e415ddf9
...@@ -36,7 +36,8 @@ class BaseRunner: ...@@ -36,7 +36,8 @@ class BaseRunner:
Partitioner. Partitioner.
""" """
status = self.launch(tasks) status = self.launch(tasks)
self.summarize(status) status_list = list(status) # change into list format
self.summarize(status_list)
@abstractmethod @abstractmethod
def launch(self, tasks: List[Dict[str, Any]]) -> List[Tuple[str, int]]: def launch(self, tasks: List[Dict[str, Any]]) -> List[Tuple[str, int]]:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment