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

Class Atom

src/dotenv/variables.py:18–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16
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: ...
27
28
29class Literal(Atom):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected