diff --git a/pgfw/Vector.py b/pgfw/Vector.py index faa79fa..d98ce62 100644 --- a/pgfw/Vector.py +++ b/pgfw/Vector.py @@ -60,13 +60,13 @@ class Vector(list): def __eq__(self, other): for sv, ov in zip(self, other): - if value != other[ii]: + if sv != ov: return False return True def __ne__(self, other): for sv, ov in zip(self, other): - if value == other[ii]: + if sv == ov: return False return True