JoeSos commited on
Commit
a7ff461
·
verified ·
1 Parent(s): 16ba7f0

Update app.py

Browse files

Corrected the print argument from calculator_tool.to_string() to calculator.to_string().

Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ def calculator(a: int, b: int) -> int:
39
  """
40
  return a * b
41
 
42
- print(calculator_tool.to_string())
43
 
44
 
45
 
 
39
  """
40
  return a * b
41
 
42
+ print(calculator.to_string())
43
 
44
 
45