Skip to content

Commit 7ac2746

Browse files
committed
Fix flake and reformat
1 parent 308f9c8 commit 7ac2746

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: tools/gen_esp32part.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def from_binary(cls, b):
318318
md5 = hashlib.md5()
319319
result = cls()
320320
for o in range(0, len(b), 32):
321-
data = b[o:o + 32]
321+
data = b[o : o + 32]
322322
if len(data) != 32:
323323
raise InputError("Partition table length must be a multiple of 32 bytes")
324324
if data == b"\xFF" * 32:

0 commit comments

Comments
 (0)