Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
linter fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
xMasterX committed Mar 5, 2024
1 parent f5bbc3c commit 9a8944f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/asset_packer.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def pack_anim(src: pathlib.Path, dst: pathlib.Path):
continue
elif frame.name.startswith("frame_"):
if frame.name.endswith(".bm"):
shutil.copyfile(src / frame.name, dst / frame.name)
shutil.copyfile(src / frame.name, dst / frame.name)
else:
(dst / frame.with_suffix(".bm").name).write_bytes(convert_bm(frame))

Expand Down

0 comments on commit 9a8944f

Please sign in to comment.