Use f-strings in go2rtc code and test and do not use abbreviation (#130158)

pull/130713/head
Jan Bouwhuis 2024-11-08 20:16:46 +01:00 committed by Franck Nijhof
parent 9292b6da3d
commit a12c76dbdd
No known key found for this signature in database
GPG Key ID: D62583BA8AB11CA3
2 changed files with 6 additions and 6 deletions

View File

@ -244,21 +244,21 @@ class WebRTCProvider(CameraWebRTCProvider):
if self._data.managed:
# HA manages the go2rtc instance
stream_org_name = camera.entity_id + "_orginal"
stream_original_name = f"{camera.entity_id}_orginal"
stream_redirect_sources = [
f"rtsp://127.0.0.1:{HA_MANAGED_RTSP_PORT}/{stream_org_name}",
f"ffmpeg:{stream_org_name}#audio=opus",
f"rtsp://127.0.0.1:{HA_MANAGED_RTSP_PORT}/{stream_original_name}",
f"ffmpeg:{stream_original_name}#audio=opus",
]
if (
(stream_org := streams.get(stream_org_name)) is None
(stream_org := streams.get(stream_original_name)) is None
or not any(
stream_source == producer.url for producer in stream_org.producers
)
or (stream_redirect := streams.get(camera.entity_id)) is None
or stream_redirect_sources != [p.url for p in stream_redirect.producers]
):
await self._rest_client.streams.add(stream_org_name, stream_source)
await self._rest_client.streams.add(stream_original_name, stream_source)
await self._rest_client.streams.add(
camera.entity_id, stream_redirect_sources
)

View File

@ -313,7 +313,7 @@ async def test_setup_managed(
camera = init_test_integration
entity_id = camera.entity_id
stream_name_orginal = camera.entity_id + "_orginal"
stream_name_orginal = f"{camera.entity_id}_orginal"
assert camera.frontend_stream_type == StreamType.HLS
assert await async_setup_component(hass, DOMAIN, config)