sytse06 commited on
Commit
93c6952
·
verified ·
1 Parent(s): 294d6f6

Update app.py

Browse files

Identation glitch

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -28,7 +28,7 @@ def get_temperature(location: str, temp_scale: str = "celsius") -> tuple[float,
28
  Returns:
29
  tuple: (temperature value as float, unit as string 'C' or 'F', qualitative description)
30
  """
31
- def get_description(temp_c: float) -> str:
32
  """Get qualitative description based on Celsius temperature"""
33
  if temp_c <= 0: return "freezing"
34
  if temp_c <= 10: return "cold"
 
28
  Returns:
29
  tuple: (temperature value as float, unit as string 'C' or 'F', qualitative description)
30
  """
31
+ def get_description(temp_c: float) -> str:
32
  """Get qualitative description based on Celsius temperature"""
33
  if temp_c <= 0: return "freezing"
34
  if temp_c <= 10: return "cold"