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