mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
if -> elif
This commit is contained in:
parent
f53d8e45bb
commit
689a93cdd8
1 changed files with 2 additions and 1 deletions
|
|
@ -17,9 +17,10 @@ def convert_argv(argv):
|
|||
if arg == '--quick':
|
||||
quick = True
|
||||
continue
|
||||
if arg == '--full':
|
||||
elif arg == '--full':
|
||||
quick = False
|
||||
continue
|
||||
|
||||
# Unittest's main has only flags and positional args.
|
||||
# So we don't worry about options with values.
|
||||
if not arg.startswith('-'):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue