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

Method __ne__

src/dotenv/variables.py:19–23  ·  view source on GitHub ↗
(self, other: object)

Source from the content-addressed store, hash-verified

17
18class Atom(metaclass=ABCMeta):
19 def __ne__(self, other: object) -> bool:
20 result = self.__eq__(other)
21 if result is NotImplemented:
22 return NotImplemented
23 return not result
24
25 @abstractmethod
26 def resolve(self, env: Mapping[str, Optional[str]]) -> str: ...

Callers

nothing calls this directly

Calls 1

__eq__Method · 0.45

Tested by

no test coverage detected