Milkfish033 commited on
Commit
b1b295f
·
1 Parent(s): 0e6c094

refine desc for arguments

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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
- arg1: the first int input
17
- arg2: the second int input
18
- arg3: the operator
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 == '+':