Skip to content

Commit

Permalink
Remove unnecessary argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rafasaurus committed Jan 28, 2025
1 parent 26ebbc6 commit 6821bf3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tools/scripts/uploader.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,7 @@ def board_name_for_board_id(self, board_id):
return None

# verify the firmware
def verify(self, fw, force=False, boot_delay=None):
def verify(self, fw, boot_delay=None):
if self.bl_rev == 2:
self.__verify_v2("Verify ", fw)
else:
Expand Down Expand Up @@ -1199,7 +1199,7 @@ def main():
elif args.download:
up.download(args.firmware)
elif args.verify:
up.verify(fw, force=args.force, boot_delay=args.boot_delay)
up.verify(fw, boot_delay=args.boot_delay)
elif args.erase_extflash:
up.erase_extflash('Erase ExtF', args.erase_extflash)
print("\nExtF Erase Finished")
Expand Down

0 comments on commit 6821bf3

Please sign in to comment.