diff --git a/temperature.py b/temperature.py index a31e315..2d19594 100644 --- a/temperature.py +++ b/temperature.py @@ -2,4 +2,4 @@ # dummy code for hw def to_celsius(fahrenheit): - return (fahrenheit - 32) * 5 / 9 + return round((fahrenheit - 32) * 5 / 9)