Skip to content

Commit

Permalink
Fix temperature range to include 82 degrees as max
Browse files Browse the repository at this point in the history
  • Loading branch information
nprez83 authored Jan 8, 2024
1 parent d76adb9 commit 68efa70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hyundai_kia_connect_api/KiaUvoAPIUSA.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ class KiaUvoAPIUSA(ApiImpl):

def __init__(self, region: int, brand: int, language) -> None:
self.LANGUAGE: str = language
self.temperature_range = range(62, 82)
self.temperature_range = range(62, 83)

# Randomly generate a plausible device id on startup
self.device_id = (
Expand Down

0 comments on commit 68efa70

Please sign in to comment.