Skip to content

Commit

Permalink
art.py: syntax fix -.-"
Browse files Browse the repository at this point in the history
  • Loading branch information
thypon authored May 2, 2023
1 parent c469ead commit b94a7f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samsungtvws/art.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def _send_art_request(
assert self.connection
event: Optional[str] = None
sub_event: Optional[str] = None
while event != wait_for_event && event != 'error':
while event != wait_for_event and event != 'error':
data = self.connection.recv()
response = helper.process_api_response(data)
event = response.get("event", "*")
Expand Down

0 comments on commit b94a7f8

Please sign in to comment.