Skip to content

Commit

Permalink
Fix mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-dewar committed Nov 21, 2024
1 parent ddb1203 commit 3b2743d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions software/chipwhisperer/hardware/naeusb/naeusb.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,8 +808,8 @@ def con(self, idProduct : Tuple[int]=(0xACE2,), connect_to_first : bool=False,


self.snum=self.usbtx.sn
fwver = self.readFwVersion()
fwver = "{}.{}.{}".format(fwver[0], fwver[1], fwver[2])
fwverraw = self.readFwVersion()
fwver = "{}.{}.{}".format(fwverraw[0], fwverraw[1], fwverraw[2])
naeusb_logger.info('SAM3U Firmware version = {}'.format(fwver))


Expand Down

0 comments on commit 3b2743d

Please sign in to comment.