Spaces:
Runtime error
Runtime error
Andre Pettersson
commited on
strong types
Browse files
app.py
CHANGED
@@ -37,7 +37,7 @@ def get_current_time_in_timezone(timezone: str) -> str:
|
|
37 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
38 |
|
39 |
@tool
|
40 |
-
def to_leet_speak(text):
|
41 |
"""
|
42 |
Converts a string to l33t speak using a substitution table.
|
43 |
|
|
|
37 |
return f"Error fetching time for timezone '{timezone}': {str(e)}"
|
38 |
|
39 |
@tool
|
40 |
+
def to_leet_speak(text: str) -> str:
|
41 |
"""
|
42 |
Converts a string to l33t speak using a substitution table.
|
43 |
|