Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Decorate validate_server_version and get_info with handle_error #18

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions go2rtc_client/rest.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ def __init__(self, client: _BaseClient) -> None:
"""Initialize Client."""
self._client = client

@handle_error
async def get_info(self) -> ApplicationInfo:
"""Get application info."""
resp = await self._client.request("GET", self.PATH)
Expand Down Expand Up @@ -143,6 +144,7 @@ def __init__(self, websession: ClientSession, server_url: str) -> None:
self.streams: Final = _StreamClient(self._client)
self.webrtc: Final = _WebRTCClient(self._client)

@handle_error
async def validate_server_version(self) -> bool:
"""Validate the server version is compatible."""
application_info = await self.application.get_info()
Expand Down