Skip to content

Commit

Permalink
squishy: core: fixed a typo, oops,
Browse files Browse the repository at this point in the history
  • Loading branch information
lethalbit committed May 12, 2024
1 parent 6cf4a70 commit d132fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion squishy/core/dfu_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __str__(self) -> str:
DFUStatus.NotDoneError : 'Received DFU_DNLOAD with length 0 but device does not think it\'s done',
DFUStatus.FirmwareError : 'Unknown error occurred',
DFUStatus.StalledPacketError: 'Device stalled an unexpected request'
}.get(self, , f'Unknown DFU Status: {int(self)}')
}.get(self, f'Unknown DFU Status: {int(self)}')

def __int__(self) -> int:
return int(self)
Expand Down

0 comments on commit d132fe7

Please sign in to comment.