Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 12, 2025
1 parent 38efe84 commit 5884844
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/iSponsorBlockTV/setup_wizard.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,10 @@ def compose(self) -> ComposeResult:
id="element-name",
)
yield Button(
"Remove", classes="element-remove button-small", variant="error", id="element-remove"
"Remove",
classes="element-remove button-small",
variant="error",
id="element-remove",
)

def on_mount(self) -> None:
Expand Down Expand Up @@ -618,7 +621,9 @@ def __init__(self, config, **kwargs) -> None:
def compose(self) -> ComposeResult:
yield Label("Devices", classes="title")
with Horizontal(id="add-device-button-container"):
yield Button("Add Device", id="add-device", classes="button-100 button-small")
yield Button(
"Add Device", id="add-device", classes="button-100 button-small"
)
for device in self.devices:
yield Device(device, tooltip="Click to edit")

Expand Down Expand Up @@ -812,7 +817,9 @@ def compose(self) -> ComposeResult:
id="warning-no-key",
)
with Horizontal(id="add-channel-button-container"):
yield Button("Add Channel", id="add-channel", classes="button-100 button-small")
yield Button(
"Add Channel", id="add-channel", classes="button-100 button-small"
)
for channel in self.config.channel_whitelist:
yield Channel(channel)

Expand Down

0 comments on commit 5884844

Please sign in to comment.