Skip to content

Commit fbc6a25

Browse files
committed
Reformatted per pre-commit
1 parent ceec424 commit fbc6a25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

adafruit_avrprog.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ def write_fuses(self, chip, low=None, high=None, ext=None, lock=None):
253253
transaction_comp = (0xE0, 0xA0, 0xA8, 0xA4)
254254
fuses = (lock, low, high, ext)
255255
self.begin(clock=_SLOW_CLOCK)
256-
for fuse, comp in zip (fuses, transaction_comp):
256+
for fuse, comp in zip(fuses, transaction_comp):
257257
if fuse:
258258
self._transaction((0xAC, comp, 0, fuse))
259259
self._busy_wait()

0 commit comments

Comments
 (0)