add vDDDTypes.dt to __eq__

pull/492/head
Nicco Kunzmann 2022-11-10 09:27:16 +00:00
rodzic 53567ef79e
commit 6808972f32
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -320,7 +320,7 @@ class vDDDTypes:
def __eq__(self, other):
if isinstance(other, vDDDTypes):
return self.params == other.params
return self.params == other.params and self.dt == other.dt
return False
def __hash__(self):