Skip to content

Commit 810d802

Browse files
committed
Fix invalid syntax error
1 parent f6e553f commit 810d802

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/gen_usb_descriptor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
raise ValueError("CDC notification endpoint number must not be 0")
7474
elif args.cdc_ep_num_data_out == 0:
7575
raise ValueError("CDC data OUT endpoint number must not be 0")
76-
elif args.cdc_ep_num_data_in == 0):
76+
elif args.cdc_ep_num_data_in == 0:
7777
raise ValueError("CDC data IN endpoint number must not be 0")
7878

7979
if 'MSC' in args.devices:

0 commit comments

Comments
 (0)