Skip to content

Commit

Permalink
Use f-strings in go2rtc code and test and do not use abbreviation (#1…
Browse files Browse the repository at this point in the history
  • Loading branch information
jbouwh authored Nov 8, 2024
1 parent 1ac9217 commit c97cc34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions homeassistant/components/go2rtc/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,21 +244,21 @@ async def async_handle_async_webrtc_offer(

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
)
Expand Down
2 changes: 1 addition & 1 deletion tests/components/go2rtc/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c97cc34

Please sign in to comment.