From 48f4b0a3a7804779f14c51ce1a726e3a4a7be883 Mon Sep 17 00:00:00 2001 From: Adrian of Doom <52701496+futzu@users.noreply.github.com> Date: Sat, 16 Nov 2024 23:58:46 -0500 Subject: [PATCH] black --- threefive/bitn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/threefive/bitn.py b/threefive/bitn.py index 8b492a71..9755b908 100644 --- a/threefive/bitn.py +++ b/threefive/bitn.py @@ -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: