Skip to content

Commit efb4dcd

Browse files
committed
Formatting
1 parent 9bbb6a0 commit efb4dcd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/textual/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2944,9 +2944,9 @@ def panic(self, *renderables: RenderableType) -> None:
29442944
Args:
29452945
*renderables: Text or Rich renderable(s) to display on exit.
29462946
"""
2947-
assert all(is_renderable(renderable) for renderable in renderables), (
2948-
"Can only call panic with strings or Rich renderables"
2949-
)
2947+
assert all(
2948+
is_renderable(renderable) for renderable in renderables
2949+
), "Can only call panic with strings or Rich renderables"
29502950

29512951
def render(renderable: RenderableType) -> list[Segment]:
29522952
"""Render a panic renderables."""

0 commit comments

Comments
 (0)