Skip to content

Commit

Permalink
Merge pull request #52 from xszym/quickfix
Browse files Browse the repository at this point in the history
Fix typo in code
  • Loading branch information
mprostakk committed May 11, 2021
2 parents 1c127fd + 64a6c05 commit 88ccaf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dmx_client/dmx_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ async def handler():
message = await websocket.recv()

dmx_values = message.split(',')
number_without_windows = 3*12
number_dmx_channels_without_windows = 3*12
dmx_values = dmx_values[number_dmx_channels_without_windows:]
dmx_values = dmx_values[::-1]

Expand Down

0 comments on commit 88ccaf3

Please # to comment.