From b9320630bcdfd82c968987226b11eb5ba9edb2f5 Mon Sep 17 00:00:00 2001 From: Scott Stoltzman <23501850+stoltzmaniac@users.noreply.github.com> Date: Sun, 31 Dec 2023 13:58:42 -0700 Subject: [PATCH] fix typos in calculator_tools.py --- stock_analysis/tools/calculator_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_analysis/tools/calculator_tools.py b/stock_analysis/tools/calculator_tools.py index c4ab4bad..08279d29 100644 --- a/stock_analysis/tools/calculator_tools.py +++ b/stock_analysis/tools/calculator_tools.py @@ -8,6 +8,6 @@ class CalculatorTools(): """Useful to perform any mathematica calculations, like sum, minus, mutiplcation, division, etc. The input to this tool should be a mathematical - experission, a couple examples are `200*7` or `5000/2*10` + expression, a couple examples are `200*7` or `5000/2*10` """ return eval(operation)