Skip to content

Commit

Permalink
fix: hash envs
Browse files Browse the repository at this point in the history
  • Loading branch information
agent authored and agent committed Oct 17, 2024
1 parent fa7ac66 commit c506b55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/openllm/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def __hash__(self): # type: ignore
return md5(
# self.python_version,
self.normalized_requirements_txt,
str(hash(self.envs)),
str(hash(self.normalized_envs)),
)


Expand Down

0 comments on commit c506b55

Please sign in to comment.