Skip to content

Commit

Permalink
lint: type annotation in completion_plugin.py (#2694)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasha10 authored Jul 2, 2023
1 parent a53b320 commit f5ef687
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hydra/plugins/completion_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def str_rep(in_key: Any, in_value: Any) -> str:
if config is None:
return []
elif OmegaConf.is_config(config):
matches = []
matches: List[str] = []
if word.endswith(".") or word.endswith("="):
exact_key = word[0:-1]
try:
Expand Down

0 comments on commit f5ef687

Please sign in to comment.