Skip to content

Commit b4f8347

Browse files
authored
fix: missing f-string in App._parse_action()
1 parent 2413818 commit b4f8347

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textual/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3678,7 +3678,7 @@ def _parse_action(
36783678
raise ActionError(f"Action namespace {destination} is not known")
36793679
action_target = getattr(self, destination, None)
36803680
if action_target is None:
3681-
raise ActionError("Action target {destination!r} not available")
3681+
raise ActionError(f"Action target {destination!r} not available")
36823682
return (
36833683
(default_namespace if action_target is None else action_target),
36843684
action_name,

0 commit comments

Comments
 (0)