Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -22,7 +22,7 @@ def my_custom_tool(arg1:int, arg2:int, arg3:str)-> str: #it's import to specify
|
|
| 22 |
case "/":
|
| 23 |
if(arg2!=0):
|
| 24 |
return f"The result is: '{arg1 / arg2}'"
|
| 25 |
-
else:
|
| 26 |
return f"Error: Division by zero not possible"
|
| 27 |
case "+":
|
| 28 |
return f"The result is: '{arg1 + arg2}'"
|
|
|
|
| 22 |
case "/":
|
| 23 |
if(arg2!=0):
|
| 24 |
return f"The result is: '{arg1 / arg2}'"
|
| 25 |
+
else:
|
| 26 |
return f"Error: Division by zero not possible"
|
| 27 |
case "+":
|
| 28 |
return f"The result is: '{arg1 + arg2}'"
|