Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianPommerening committed Jul 25, 2024
1 parent cf8a917 commit 87c569f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions driver/tab_completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def complete_planner_args(prefix, parsed_args, **kwargs):

if has_only_filename_options and len(parsed_args.filenames) < 2:
file_completer = argcomplete.FilesCompleter()
completions.update({f : "" for f in file_completer(prefix, **kwargs)})
completions.update({f: "" for f in file_completer(prefix, **kwargs)})

return completions

Expand Down Expand Up @@ -130,7 +130,7 @@ def _get_completions_from_downward(downward, options, prefix):
cmd = [str(downward), "--bash-complete", # TODO: "--ifs", entry_separator, "--dfs", help_separator,
comp_point, comp_line, comp_cword] + simulated_commandline
output = subprocess.check_output(cmd, text=True)
return _split_argcomplete_ouput(output, "\n", ":") #TODO: entry_separator, help_separator)
return _split_argcomplete_ouput(output, "\n", ":") # TODO: entry_separator, help_separator)


def _get_completions_from_translator(translator, options, prefix):
Expand Down

0 comments on commit 87c569f

Please sign in to comment.