MCPcopy Index your code
hub / github.com/theskumar/python-dotenv / __init__

Method __init__

src/dotenv/parser.py:70–73  ·  view source on GitHub ↗
(self, stream: IO[str])

Source from the content-addressed store, hash-verified

68
69class Reader:
70 def __init__(self, stream: IO[str]) -> None:
71 self.string = stream.read()
72 self.position = Position.start()
73 self.mark = Position.start()
74
75 def has_next(self) -> bool:
76 return self.position.chars < len(self.string)

Callers

nothing calls this directly

Calls 2

readMethod · 0.80
startMethod · 0.80

Tested by

no test coverage detected