Skip to content

Commit

Permalink
Fix parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
JessamyT committed Nov 2, 2024
1 parent 43357e3 commit e81715c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/viam/components/board/board.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,8 @@ async def stream_ticks(self, interrupts: List[DigitalInterrupt], *, timeout: Opt
my_board = Board.from_robot(robot=machine, name="my_board")
di8 = await my_board.digital_interrupt_by_name(name="8"))
di11 = await my_board.digital_interrupt_by_name(name="11"))
di8 = await my_board.digital_interrupt_by_name(name="8")
di11 = await my_board.digital_interrupt_by_name(name="11")
# Iterate over stream of ticks from pins 8 and 11.
async for tick in await my_board.stream_ticks([di8, di11]):
Expand Down

0 comments on commit e81715c

Please sign in to comment.