Skip to content

Commit 370d40c

Browse files
committed
format Python
1 parent ac14b99 commit 370d40c

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

python/iron/runtime/runtime.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,9 @@ def fill(
186186

187187
in_fifo.endpoint = rt_endpoint
188188
self._fifos.add(in_fifo)
189-
self._tasks.append(DMATask(in_fifo, source, tap, task_group, wait, offset_param_name))
189+
self._tasks.append(
190+
DMATask(in_fifo, source, tap, task_group, wait, offset_param_name)
191+
)
190192

191193
def drain(
192194
self,
@@ -234,7 +236,9 @@ def drain(
234236

235237
out_fifo.endpoint = rt_endpoint
236238
self._fifos.add(out_fifo)
237-
self._tasks.append(DMATask(out_fifo, dest, tap, task_group, wait, offset_param_name))
239+
self._tasks.append(
240+
DMATask(out_fifo, dest, tap, task_group, wait, offset_param_name)
241+
)
238242

239243
def start(self, *args: Worker):
240244
"""A placeholder operation to indicate that one or more Worker should be started on the device.

0 commit comments

Comments
 (0)