mirror of
https://github.com/home-assistant/core.git
synced 2025-08-05 13:45:12 +02:00
Fix braviatv typing (#66871)
This commit is contained in:
@@ -110,7 +110,7 @@ class BraviaTVCoordinator(DataUpdateCoordinator[None]):
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
||||||
def _send_command(self, command: str, repeats: int = 1) -> None:
|
def _send_command(self, command: Iterable[str], repeats: int = 1) -> None:
|
||||||
"""Send a command to the TV."""
|
"""Send a command to the TV."""
|
||||||
for _ in range(repeats):
|
for _ in range(repeats):
|
||||||
for cmd in command:
|
for cmd in command:
|
||||||
|
Reference in New Issue
Block a user