MCPcopy Index your code
hub / github.com/PyGithub/PyGithub / __init__

Method __init__

github/Auth.py:134–141  ·  view source on GitHub ↗
(self, login: str, password: str)

Source from the content-addressed store, hash-verified

132 """
133
134 def __init__(self, login: str, password: str):
135 assert isinstance(login, str)
136 assert len(login) > 0
137 assert isinstance(password, str)
138 assert len(password) > 0
139
140 self._login = login
141 self._password = password
142
143 @property
144 def login(self) -> str:

Callers 3

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected