Skip to content

Commit

Permalink
black
Browse files Browse the repository at this point in the history
  • Loading branch information
futzu authored Nov 17, 2024
1 parent 208f5b0 commit 48f4b0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions threefive/bitn.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ def add_bites(self, plus_bites):
add_bites appends plus_bites
to self.bites
"""
if isinstance(plus_bites,int):
plus_bites=bytes.fromhex(hex(plus_bites)[2:])
if isinstance(plus_bites, int):
plus_bites = bytes.fromhex(hex(plus_bites)[2:])
self.bites += plus_bites

# if self.idx % 8 == 0:
Expand Down

0 comments on commit 48f4b0a

Please sign in to comment.