Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -19,7 +19,9 @@ def print_text_multiple_times(text:str, n:int)-> str: #it's import to specify th
|
|
| 19 |
if n<1:
|
| 20 |
return ""
|
| 21 |
text_times = [text for i in range(n)]
|
| 22 |
-
|
|
|
|
|
|
|
| 23 |
|
| 24 |
@tool
|
| 25 |
def get_current_time_in_timezone(timezone: str) -> str:
|
|
|
|
| 19 |
if n<1:
|
| 20 |
return ""
|
| 21 |
text_times = [text for i in range(n)]
|
| 22 |
+
final_text = "".join(text_times)
|
| 23 |
+
print(final_text)
|
| 24 |
+
return final_text
|
| 25 |
|
| 26 |
@tool
|
| 27 |
def get_current_time_in_timezone(timezone: str) -> str:
|