Skip to content

Commit

Permalink
make param optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ahiuchingau committed Dec 18, 2024
1 parent 9f2c2c4 commit 21248c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/opentrons/drivers/flex_stacker/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ async def home_axis(self, axis: StackerAxis, direction: Direction) -> None:
)

async def set_led(
self, power: float, color: LEDColor | None, external: bool | None
self, power: float, color: LEDColor | None = None, external: bool | None = None
) -> None:
"""Set LED color.
Expand Down

0 comments on commit 21248c0

Please sign in to comment.