Skip to content

Commit

Permalink
Changed version to 1.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
CSutter5 committed Dec 18, 2023
1 parent e9cf8df commit e572c72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions NWS_Weather/observation.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ def __init__(self, data: dict):
self.max_temperature_last_24_hours = check_if_none(data['properties']['maxTemperatureLast24Hours']['value'])
self.min_temperature_last_24_hours = check_if_none(data['properties']['minTemperatureLast24Hours']['value'])
self.precipitation_last_hour = check_if_none(data['properties']['precipitationLastHour']['value'])
self.precipitation_last_3_hours = check_if_none(data['properties']['precipitationLast3Hours']['value'])
self.precipitation_last_6_hours = check_if_none(data['properties']['precipitationLast6Hours']['value'])
self.precipitation_last_3_hours = check_if_none(data['properties']['precipitationLast3Hours']['value'])
self.precipitation_last_6_hours = check_if_none(data['properties']['precipitationLast6Hours']['value'])
self.relative_humidity = check_if_none(data['properties']['relativeHumidity']['value'])
self.wind_chill = check_if_none(data['properties']['windChill']['value'])
self.heat_index = check_if_none(data['properties']['heatIndex']['value'])
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name='NWS_Weather',
version='1.1.0',
version='1.1.1',
packages=find_packages(),
install_requires=[
'requests',
Expand Down

0 comments on commit e572c72

Please sign in to comment.