Skip to content

Commit 161583f

Browse files
committed
#167 Fixed flake8 issue
1 parent 4cce04c commit 161583f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cflib/bootloader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ def _internal_flash(self, target, current_file_number=1, total_files=1):
296296
ctr = 0 # Buffer counter
297297
for i in range(0, int((len(image) - 1) / t_data.page_size) + 1):
298298
if self.terminate_flashing_cb and self.terminate_flashing_cb():
299-
raise Exception("Flashing terminated")
299+
raise Exception('Flashing terminated')
300300

301301
# Load the buffer
302302
if ((i + 1) * t_data.page_size) > len(image):

0 commit comments

Comments
 (0)