Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bidyapati-p authored Sep 7, 2023
1 parent e647129 commit bf38197
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/helm/common/object_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ class ObjectSpec:
args: Dict[str, Any]

def __hash__(self):
# bug : Scenario object has tags as a list which is not hashable
# return hash((self.class_name, tuple((k, self.args[k]) for k in sorted(self.args.keys()))))
t = tuple()
for k in sorted(self.args.keys()):
t = t + ((k, tuple(self.args[k])),)
Expand Down

0 comments on commit bf38197

Please sign in to comment.