Skip to content

Commit b345605

Browse files
committed
Fix formatting
1 parent a7bacbb commit b345605

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/textual/command.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,9 @@ class SimpleCommand(NamedTuple):
331331
"""The description of the command."""
332332

333333

334-
CommandListItem: TypeAlias = "SimpleCommand | tuple[str, IgnoreReturnCallbackType, str | None] | tuple[str, IgnoreReturnCallbackType]"
334+
CommandListItem: TypeAlias = (
335+
"SimpleCommand | tuple[str, IgnoreReturnCallbackType, str | None] | tuple[str, IgnoreReturnCallbackType]"
336+
)
335337

336338

337339
class SimpleProvider(Provider):

0 commit comments

Comments
 (0)