LawsonE commited on
Commit
208a451
·
verified ·
1 Parent(s): eaca291

Fixed issue with event parameter docstring

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -12,7 +12,7 @@ def add_event_to_calendar(event_name:str, start:str, end:str)-> str: # it's impo
12
  """A tool that allows you to create events on google calendar.
13
  Time should be represented in this format: 2015-05-28T09:00:00-00:00
14
  Args:
15
- event: The name of the event.
16
  start: The start time of the event represented as a datetime str.
17
  end: The end time of the event respresented as a datetime str.
18
  """
 
12
  """A tool that allows you to create events on google calendar.
13
  Time should be represented in this format: 2015-05-28T09:00:00-00:00
14
  Args:
15
+ event_name: The name of the event.
16
  start: The start time of the event represented as a datetime str.
17
  end: The end time of the event respresented as a datetime str.
18
  """