mirror of
https://github.com/dmunozv04/iSponsorBlockTV.git
synced 2025-12-08 04:46:44 +03:00
Fix: Correct line length error in setup wizard label
Split long string literal in the Minimum Skip Length label to adhere to maximum line length constraints (FLK-E501)
This commit is contained in:
@@ -733,7 +733,11 @@ class MinimumSkipLengthManager(Vertical):
|
|||||||
def compose(self) -> ComposeResult:
|
def compose(self) -> ComposeResult:
|
||||||
yield Label("Minimum Skip Length", classes="title")
|
yield Label("Minimum Skip Length", classes="title")
|
||||||
yield Label(
|
yield Label(
|
||||||
"Specify the minimum length a segment must meet in order to skip it (in seconds). Default is 1 second; entering 0 will skip all segments.",
|
(
|
||||||
|
"Specify the minimum length a segment must meet in order to skip "
|
||||||
|
"it (in seconds). Default is 1 second; entering 0 will skip all "
|
||||||
|
"segments."
|
||||||
|
),
|
||||||
classes="subtitle",
|
classes="subtitle",
|
||||||
)
|
)
|
||||||
yield Input(
|
yield Input(
|
||||||
|
|||||||
Reference in New Issue
Block a user