"tests/git@developer.sourcefind.cn:guobj/qwen_lmdeploy.git" did not exist on "35d644628fd31b1df00e2bc5b601b89c5fd335c6"
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:
Partitioner.
"""
status = self.launch(tasks)
self.summarize(status)
status_list = list(status) # change into list format
self.summarize(status_list)
@abstractmethod
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