diff --git a/ndiff/ndiff.py b/ndiff/ndiff.py index d0205b7a5..5692d1fb0 100755 --- a/ndiff/ndiff.py +++ b/ndiff/ndiff.py @@ -330,6 +330,7 @@ class Service(object): # self.ostype = None # self.devicetype = None + __hash__ = None def __eq__(self, other): return self.name == other.name \ and self.product == other.product \ @@ -383,6 +384,7 @@ class ScriptResult(object): self.id = None self.output = None + __hash__ = None def __eq__(self, other): return self.id == other.id and self.output == other.output