We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dabee5 commit 5f2e29bCopy full SHA for 5f2e29b
homeassistant/components/stream/worker.py
@@ -540,8 +540,8 @@ def stream_worker(
540
for field in attr.fields(StreamSettings):
541
setattr(
542
stream_settings,
543
- field.name,
544
- getattr(STREAM_SETTINGS_NON_LL_HLS, field.name),
+ field.name, # type: ignore[attr-defined]
+ getattr(STREAM_SETTINGS_NON_LL_HLS, field.name), # type: ignore[attr-defined]
545
)
546
stream_state.diagnostics.set_value("container_format", container.format.name)
547
stream_state.diagnostics.set_value("video_codec", video_stream.name)
0 commit comments