From 16603392c9c70804bacf9a02517eced6054ad15d Mon Sep 17 00:00:00 2001 From: ltcptgeneral <35508619+ltcptgeneral@users.noreply.github.com> Date: Tue, 12 May 2020 20:21:11 -0500 Subject: [PATCH] bug fixes --- analysis-master/analysis/analysis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/analysis-master/analysis/analysis.py b/analysis-master/analysis/analysis.py index 2106bf4a..fbd0d557 100644 --- a/analysis-master/analysis/analysis.py +++ b/analysis-master/analysis/analysis.py @@ -990,7 +990,7 @@ class ArrayTest(): # tests on nd arrays independent of basic_stats temp = np.array([]) - for a in *args: + for a in args: temp += a return temp @@ -999,7 +999,7 @@ class ArrayTest(): # tests on nd arrays independent of basic_stats temp = np.array([]) - for a in *args: + for a in args: temp *= a return temp