Spaces:
Sleeping
Sleeping
Commit
·
b1b295f
1
Parent(s):
0e6c094
refine desc for arguments
Browse files
app.py
CHANGED
|
@@ -13,9 +13,9 @@ def calculator(x:int, y:int, operator:str)-> int: #it's import to specify the re
|
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
"""A tool that calculates math calculations bwteen two integers
|
| 15 |
Args:
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
"""
|
| 20 |
|
| 21 |
if operator == '+':
|
|
|
|
| 13 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 14 |
"""A tool that calculates math calculations bwteen two integers
|
| 15 |
Args:
|
| 16 |
+
x: the first int input
|
| 17 |
+
y: the second int input
|
| 18 |
+
operator: the operator
|
| 19 |
"""
|
| 20 |
|
| 21 |
if operator == '+':
|