Skip to content

Commit

Permalink
fix exception on bash completion
Browse files Browse the repository at this point in the history
  • Loading branch information
Kamilcuk committed Oct 22, 2024
1 parent 863d67f commit 4d8b2d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nomad_tools/common_click.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def completor_cb(
try:
return [x for x in cb() if x.startswith(incomplete)]
except Exception:
pass
return []

return completor_cb

Expand Down

0 comments on commit 4d8b2d8

Please sign in to comment.