(self, owner: str, repo_name: str)
| 32 | x_api_reset: Optional[float] = None |
| 33 | |
| 34 | def __init__(self, owner: str, repo_name: str): |
| 35 | self.owner: str = owner |
| 36 | self.name: str = repo_name |
| 37 | self.repo = self.get_repository_data() |
| 38 | self.contributors = self.get_contributors() |
| 39 | |
| 40 | @classmethod |
| 41 | def from_url(cls, url: str) -> GitHub: |
nothing calls this directly
no test coverage detected