Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gadgetoid committed Nov 9, 2020
1 parent 314147b commit 847f0dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion src/ttblit/asset/image.py
@@ -1,6 +1,5 @@
import io
import logging
import struct

from bitstring import BitArray
from PIL import Image
Expand Down
10 changes: 5 additions & 5 deletions src/ttblit/core/struct.py
Expand Up @@ -39,10 +39,10 @@ def _encode(self, obj, context, path):


struct_blit_pixel = Struct(
'r' / Int8ul,
'g' / Int8ul,
'b' / Int8ul,
'a' / Int8ul
'r' / Int8ul,
'g' / Int8ul,
'b' / Int8ul,
'a' / Int8ul
)

struct_blit_image = Struct(
Expand Down Expand Up @@ -113,4 +113,4 @@ def _encode(self, obj, context, path):
'relo' / struct_blit_relo,
'bin' / RawCopy(struct_blit_bin),
'meta' / struct_blit_meta
)
)

0 comments on commit 847f0dc

Please sign in to comment.