From 5884844da1ca28dda071228cc876c539b100fe62 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Wed, 12 Feb 2025 12:06:38 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- src/iSponsorBlockTV/setup_wizard.py | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/iSponsorBlockTV/setup_wizard.py b/src/iSponsorBlockTV/setup_wizard.py index 762c5d7..9437d49 100644 --- a/src/iSponsorBlockTV/setup_wizard.py +++ b/src/iSponsorBlockTV/setup_wizard.py @@ -89,7 +89,10 @@ class Element(Static): 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: @@ -618,7 +621,9 @@ class DevicesManager(Vertical): 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") @@ -812,7 +817,9 @@ class ChannelWhitelistManager(Vertical): 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)