Spaces:
Sleeping
Sleeping
Fixed issue with event parameter docstring
Browse files
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 |
-
|
| 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 |
"""
|