From 4d715a020ae132f8df2a243947e1234dcdaf36a9 Mon Sep 17 00:00:00 2001 From: zack Date: Sun, 5 Apr 2026 11:46:31 -0400 Subject: [PATCH] other change to temperature --- temperature.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/temperature.py b/temperature.py index a31e315..dfa38c5 100644 --- a/temperature.py +++ b/temperature.py @@ -2,4 +2,5 @@ # dummy code for hw def to_celsius(fahrenheit): - return (fahrenheit - 32) * 5 / 9 + celsius = (fahrenheit - 32) * 5 / 9 + return celsius