hemantvirmani commited on
Commit
31d8dbc
·
verified ·
1 Parent(s): c7a5fa7

correcting the argument name celsius

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ from Gradio_UI import GradioUI
12
  def convert_celsius_to_fahrenheit(celsius: float)-> float:
13
  """A tool to convert temperature celsuis to fahrenheit
14
  Args:
15
- arg1: temperature in celsius (in float)
16
  Return:
17
  return: temperature in fahrenheit (in float)
18
  """
 
12
  def convert_celsius_to_fahrenheit(celsius: float)-> float:
13
  """A tool to convert temperature celsuis to fahrenheit
14
  Args:
15
+ celsius: temperature in celsius (in float)
16
  Return:
17
  return: temperature in fahrenheit (in float)
18
  """