Skip to content

Commit

Permalink
typo: fix a typo which generates useless error message
Browse files Browse the repository at this point in the history
  • Loading branch information
FYWinds authored and carstencodes committed Dec 23, 2023
1 parent 7b070f3 commit 329b6c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pdm_bump/actions/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ def execute(
if selected_command not in self.__items:
raise ValueError(
f"Failed to get command {selected_command}. "
+ "Valid values are {', '.join(self.__items.keys())}."
+ f"Valid values are {', '.join(self.__items.keys())}."
)

clazz: type[ActionBase] = self.__items[selected_command]
Expand Down

0 comments on commit 329b6c5

Please sign in to comment.