Skip to content

Commit d966cd3

Browse files
committed
modified file to fit the 88-character limit
1 parent 149604d commit d966cd3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

conversions/fahrenheit_to_celsius.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ def fahrenheit_to_celsius(fahrenheit):
2929

3030

3131
celsius = (fahrenheit - 32)*5/9 # value converted from fahrenheit to celsius
32-
celsius = round(celsius, 2) # converted (celsius) value is rounded to two decimal places
32+
celsius = round(celsius, 2)
33+
# converted (celsius) value is rounded to two decimal places
3334
print(celsius)
3435

3536
if __name__ == "__main__":

0 commit comments

Comments
 (0)