Skip to content

Commit 1ba9a03

Browse files
committed
Formatting
1 parent 472e94a commit 1ba9a03

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/textual/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ def _watch_theme(self, theme_name: str) -> None:
12531253
def _invalidate_css(self) -> None:
12541254
"""Invalidate CSS, so it will be refreshed."""
12551255
self._css_update_count += 1
1256-
1256+
12571257
def watch_ansi_theme_dark(self, theme: TerminalTheme) -> None:
12581258
if self.current_theme.dark:
12591259
self._refresh_truecolor_filter(theme)

src/textual/command.py

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

344344

345-
CommandListItem: TypeAlias = "SimpleCommand | tuple[str, IgnoreReturnCallbackType, str | None] | tuple[str, IgnoreReturnCallbackType]"
345+
CommandListItem: TypeAlias = (
346+
"SimpleCommand | tuple[str, IgnoreReturnCallbackType, str | None] | tuple[str, IgnoreReturnCallbackType]"
347+
)
346348

347349

348350
class SimpleProvider(Provider):

0 commit comments

Comments
 (0)