Skip to content

Commit

Permalink
fixed incorrect indent
Browse files Browse the repository at this point in the history
  • Loading branch information
yulei committed Apr 26, 2024
1 parent 24490b1 commit 68d76e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/python/amk/animation.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def convert_task(self):
#pack frame durations
for i in range(total):
data = struct.pack("<H", frames[i]["delay"])
f.write(data)
f.write(data)
#pack frame data
#progress = 0
for i in range(total):
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/amk/protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from protocol.base_protocol import BaseProtocol

AMK_VERSION = "0.5.0"
AMK_VERSION = "0.6.1"

AMK_PROTOCOL_PREFIX = 0xFD
AMK_PROTOCOL_OK = 0xAA
Expand Down

0 comments on commit 68d76e7

Please sign in to comment.