MCPcopy Create free account
hub / github.com/theskumar/python-dotenv / __hash__

Method __hash__

src/dotenv/variables.py:41–42  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

39 return self.value == other.value
40
41 def __hash__(self) -> int:
42 return hash((self.__class__, self.value))
43
44 def resolve(self, env: Mapping[str, Optional[str]]) -> str:
45 return self.value

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected