Skip to content

Commit 942228e

Browse files
author
Sarah Krebs
committed
Remove comment
1 parent 5140787 commit 942228e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

deepcave/plugins/static.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def plugin_process(n_clicks: int, _: Any, *inputs_list: str) -> Optional[Any]:
157157
raw_outputs = {}
158158
raw_outputs_available = True
159159
for run in runs:
160-
raw_outputs[run.id] = rc.get(run, self.id, inputs_key) # same problem
160+
raw_outputs[run.id] = rc.get(run, self.id, inputs_key)
161161

162162
if raw_outputs[run.id] is None:
163163
raw_outputs_available = False
@@ -186,7 +186,7 @@ def plugin_process(n_clicks: int, _: Any, *inputs_list: str) -> Optional[Any]:
186186

187187
# Check if processing is needed
188188
for run in runs:
189-
job_id = self._get_job_id(run.id, inputs_key) # same problem
189+
job_id = self._get_job_id(run.id, inputs_key)
190190

191191
# Results are already achieved or it was already processed
192192
if raw_outputs[run.id] is not None or queue.is_processed(job_id):

0 commit comments

Comments
 (0)