Update docs/core/entity/camera.md

This commit is contained in:
J. Nick Koston 2021-12-31 14:37:04 -10:00 committed by GitHub
parent f98ef0dd14
commit 277f215beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -98,7 +98,7 @@ An integration may provide a WebRTC stream for any RTSP camera using `async_regi
```python
async def handle_offer(stream_source: str, offer_sdp: str) -> str:
"""Handle the signal path for a WebRTC stream and return an answer"""
"""Handle the signal path for a WebRTC stream and return an answer."""
try:
return await client.offer(offer_sdp, stream_source)
except ClientError as err: