nikhilkomakula commited on
Commit
e2da55c
·
verified ·
1 Parent(s): 193ab50

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -10,7 +10,7 @@ from Gradio_UI import GradioUI
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
 
12
  @tool
13
- def convert_time_only(time_str: str, from_tz_str: str, to_tz_str: str, fmt="%H:%M": str) -> str:
14
  """A tool that converts a given time from a source timezone to a destination timezone using today's date.
15
 
16
  Args:
 
10
  # Below is an example of a tool that does nothing. Amaze us with your creativity !
11
 
12
  @tool
13
+ def convert_time_only(time_str: str, from_tz_str: str, to_tz_str: str, fmt: str ="%H:%M") -> str:
14
  """A tool that converts a given time from a source timezone to a destination timezone using today's date.
15
 
16
  Args: