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