Skip to content

Commit

Permalink
fix #87
Browse files Browse the repository at this point in the history
  • Loading branch information
arseniybelkov committed Dec 8, 2024
1 parent e3ec985 commit b93899b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions thunder/cli/backend_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,9 @@ def _list(names: BackendNamesArg = None):
table = Table("Name", "Backend", "Parameters",
title=f"Configs at {str(BACKENDS_CONFIG_PATH.resolve())}")

if names is None:
names = local.copy()

extra = set(names) - set(local)
if extra:
console.print("These names are not among your configs:", extra)
Expand Down

0 comments on commit b93899b

Please sign in to comment.