mirror of
https://github.com/titanscouting/tra-analysis.git
synced 2025-09-08 15:57:21 +00:00
fix: __setitem__ == to single =
This commit is contained in:
@@ -67,7 +67,7 @@ class Array(): # tests on nd arrays independent of basic_stats
|
|||||||
|
|
||||||
def __setitem__(self, key, value):
|
def __setitem__(self, key, value):
|
||||||
|
|
||||||
self.array[key] == value
|
self.array[key] = value
|
||||||
|
|
||||||
def normalize(self, array):
|
def normalize(self, array):
|
||||||
|
|
||||||
@@ -149,4 +149,4 @@ class Array(): # tests on nd arrays independent of basic_stats
|
|||||||
else:
|
else:
|
||||||
return binary_search(arr, mid + 1, high, x)
|
return binary_search(arr, mid + 1, high, x)
|
||||||
else:
|
else:
|
||||||
return -1
|
return -1
|
||||||
|
Reference in New Issue
Block a user