Skip to content

Commit b6935b7

Browse files
committed
Swapped line order for comment clarity
1 parent 98301d0 commit b6935b7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cmd2.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1340,13 +1340,13 @@ def tokens_for_completion(self, line, begidx, endidx):
13401340
raw_tokens.append(cur_initial_token)
13411341
continue
13421342

1343-
# Keep track of the current token we are building
1344-
cur_raw_token = ''
1345-
13461343
# Iterate over each character in this token
13471344
cur_index = 0
13481345
cur_char = cur_initial_token[cur_index]
13491346

1347+
# Keep track of the token we are building
1348+
cur_raw_token = ''
1349+
13501350
while True:
13511351
if cur_char not in REDIRECTION_CHARS:
13521352

0 commit comments

Comments
 (0)