Skip to content

Commit 5a23966

Browse files
committed
Clean trailing whitespace
1 parent d34f4a4 commit 5a23966

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/textual/app.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,8 @@ class App(Generic[ReturnType], DOMNode):
313313
scrollbar-background-active: ansi_default;
314314
scrollbar-color: ansi_blue;
315315
scrollbar-color-active: ansi_bright_blue;
316-
scrollbar-color-hover: ansi_bright_blue;
317-
scrollbar-corner-color: ansi_default;
316+
scrollbar-color-hover: ansi_bright_blue;
317+
scrollbar-corner-color: ansi_default;
318318
}
319319
320320
.bindings-table--key {
@@ -335,18 +335,18 @@ class App(Generic[ReturnType], DOMNode):
335335
}
336336
337337
/* When a widget is maximized */
338-
Screen.-maximized-view {
338+
Screen.-maximized-view {
339339
layout: vertical !important;
340340
hatch: right $panel;
341341
overflow-y: auto !important;
342342
align: center middle;
343343
.-maximized {
344-
dock: initial !important;
344+
dock: initial !important;
345345
}
346346
}
347347
/* Fade the header title when app is blurred */
348-
&:blur HeaderTitle {
349-
text-opacity: 50%;
348+
&:blur HeaderTitle {
349+
text-opacity: 50%;
350350
}
351351
}
352352
*:disabled:can-focus {
@@ -438,7 +438,7 @@ class MyApp(App[None]):
438438
"""The default value of [Screen.ALLOW_IN_MAXIMIZED_VIEW][textual.screen.Screen.ALLOW_IN_MAXIMIZED_VIEW]."""
439439

440440
CLICK_CHAIN_TIME_THRESHOLD: ClassVar[float] = 0.5
441-
"""The maximum number of seconds between clicks to upgrade a single click to a double click,
441+
"""The maximum number of seconds between clicks to upgrade a single click to a double click,
442442
a double click to a triple click, etc."""
443443

444444
BINDINGS: ClassVar[list[BindingType]] = [
@@ -465,7 +465,7 @@ class MyApp(App[None]):
465465

466466
ESCAPE_TO_MINIMIZE: ClassVar[bool] = True
467467
"""Use escape key to minimize widgets (potentially overriding bindings).
468-
468+
469469
This is the default value, used if the active screen's `ESCAPE_TO_MINIMIZE` is not changed from `None`.
470470
"""
471471

@@ -537,7 +537,7 @@ def __init__(
537537

538538
self._registered_themes: dict[str, Theme] = {}
539539
"""Themes that have been registered with the App using `App.register_theme`.
540-
540+
541541
This excludes the built-in themes."""
542542

543543
for theme in BUILTIN_THEMES.values():
@@ -739,7 +739,7 @@ def __init__(
739739

740740
self.theme_changed_signal: Signal[Theme] = Signal(self, "theme-changed")
741741
"""Signal that is published when the App's theme is changed.
742-
742+
743743
Subscribers will receive the new theme object as an argument to the callback.
744744
"""
745745

0 commit comments

Comments
 (0)