Skip to content

Commit

Permalink
add decimal for better graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
SirGoodenough committed Nov 22, 2022
1 parent 0676b08 commit 30de2f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cottage.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def W1():
if tempC is None or tempC > 150.0 or tempC < 1.0:
return
# Conversion to F & round to .1
tF = round((9.0/5.0 * tempC + 32.0), 1)
tF = round((9.0/5.0 * tempC + 32.0), 2)
# Use while Troubleshooting...
# print("{:.1f}".format(tF))
# Done
Expand Down

0 comments on commit 30de2f5

Please sign in to comment.