Skip to content
This repository was archived by the owner on May 16, 2023. It is now read-only.

Commit b9bd00f

Browse files
committed
fixed data type
1 parent 8f11cfb commit b9bd00f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

timetemp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
temperature = int(data['currently']['temperature'])
3333
humidity = int(data['currently']['humidity'] * 100);
3434
windSpeed = int(data['currently']['windSpeed'])
35-
windDir = str(data['currently']['windBearing'])
35+
windDir = data['currently']['windBearing']
3636
windUnits = "mph"
3737

3838
# print(temperature)

0 commit comments

Comments
 (0)