-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
It's not really an issue but a tip that in arguments parsing
for loop (lines 65-79)
- You use enumerate() with start = 0, which is default, you should change it to 1 inasmuch you don't use "index" variable at starting value, always running calculation which are not necessary
Changes
argv[index + 1]
toargv[index]
for index, arg in enumerate(argv):
tofor index, arg in enumerate(argv, start = 1):
Metadata
Metadata
Assignees
Labels
No labels