JoeSos commited on
Commit
aa32857
·
verified ·
1 Parent(s): 03f4caa

Update app.py

Browse files

Added missing parenthesis in calculator tool definition.

Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -66,6 +66,7 @@ calculator_tool = Tool(
66
  calculator,
67
  [("a", "int"), ("b", "int")],
68
  "int",
 
69
 
70
  # Below is an example of a tool that does nothing. Amaze us with your creativity!
71
 
 
66
  calculator,
67
  [("a", "int"), ("b", "int")],
68
  "int",
69
+ )
70
 
71
  # Below is an example of a tool that does nothing. Amaze us with your creativity!
72