Skip to content

Commit

Permalink
remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
hanjinliu committed Jun 21, 2024
1 parent 57ad730 commit b0d1533
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/completion/_misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ def complete_keyword_name_or_value(
if len(values) == 1 and last_word == values[0]:
values = []
valid_values = [v for v in values if v.startswith(last_word)]
print(last_word, valid_values)
return CompletionState(
text=last_word,
completions=valid_values,
Expand Down

0 comments on commit b0d1533

Please sign in to comment.