Skip to content

Commit

Permalink
Fix typo, refs #477
Browse files Browse the repository at this point in the history
  • Loading branch information
coleifer committed Jan 6, 2020
1 parent 49dd3ad commit 29e95bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion huey/serializer.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def is_compressed(data):
return data and (data[0] == b'\x1f' or data[0] == b'\x78')
else:
def is_compressed(data):
return data and data[0] == 0x1for data[0] == 0x78
return data and data[0] == 0x1f or data[0] == 0x78


class Serializer(object):
Expand Down

0 comments on commit 29e95bb

Please sign in to comment.