Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Clémentine
commited on
Commit
·
791ccdb
1
Parent(s):
9844319
fix return
Browse files- yourbench_space/utils.py +1 -1
yourbench_space/utils.py
CHANGED
@@ -119,7 +119,7 @@ class SubprocessManagerGroup:
|
|
119 |
|
120 |
def read_and_get_output(self, uid: Union[str, gr.State]):
|
121 |
uid = SubprocessManagerGroup.grab_uuid(uid)
|
122 |
-
self.managers[uid].read_and_get_output()
|
123 |
|
124 |
|
125 |
class SubprocessManager:
|
|
|
119 |
|
120 |
def read_and_get_output(self, uid: Union[str, gr.State]):
|
121 |
uid = SubprocessManagerGroup.grab_uuid(uid)
|
122 |
+
return self.managers[uid].read_and_get_output()
|
123 |
|
124 |
|
125 |
class SubprocessManager:
|