Skip to content

Commit 69fe281

Browse files
author
Hugues Valois
authored
Fix a policheck warning. (microsoft#13325)
1 parent 8aa91d1 commit 69fe281

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pythonFiles/testing_tools/adapter/__main__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,9 @@ def parse_args(
5858

5959
# Parse the args!
6060
if "--" in argv:
61-
seppos = argv.index("--")
62-
toolargs = argv[seppos + 1 :]
63-
argv = argv[:seppos]
61+
sep_index = argv.index("--")
62+
toolargs = argv[sep_index + 1 :]
63+
argv = argv[:sep_index]
6464
else:
6565
toolargs = []
6666
args = parser.parse_args(argv)

0 commit comments

Comments
 (0)