Skip to content

Commit

Permalink
Fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
tilk committed Nov 13, 2024
1 parent f02a910 commit 8adc8c2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/scheduler/test_scheduler.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ def make_queue_process(
Parameters
----------
io : AsyncTestbenchIO
AsyncTestbenchIO to call with items gathered from `input_queues`.
io : TestbenchIO
TestbenchIO to call with items gathered from `input_queues`.
input_queues : deque[dict], optional
Queue of dictionaries containing fields and values of a record to call
`io` with. Different fields may be split across multiple queues.
Expand Down
2 changes: 1 addition & 1 deletion transactron/testing/infrastructure.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ def run_simulation(self, module: HasElaborate, max_cycles: float = 10e4, add_tra

async def tick(self, sim: AnySimulatorContext, cycle_cnt: int = 1):
"""
Yields for the given number of cycles.
Waits for the given number of cycles.
"""
for _ in range(cycle_cnt):
await sim.tick()
Expand Down

0 comments on commit 8adc8c2

Please sign in to comment.