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

Method __init__

src/dotenv/variables.py:49–51  ·  view source on GitHub ↗
(self, name: str, default: Optional[str])

Source from the content-addressed store, hash-verified

47
48class Variable(Atom):
49 def __init__(self, name: str, default: Optional[str]) -> None:
50 self.name = name
51 self.default = default
52
53 def __repr__(self) -> str:
54 return f"Variable(name={self.name}, default={self.default})"

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected