:calls: `GET /repos/{owner}/{repo}/contents/{path} `_
(self, path: str, ref: Opt[str] = NotSet)
| 2935 | """ |
| 2936 | ) |
| 2937 | def get_dir_contents(self, path: str, ref: Opt[str] = NotSet) -> list[ContentFile]: |
| 2938 | """ |
| 2939 | :calls: `GET /repos/{owner}/{repo}/contents/{path} <https://docs.github.com/en/rest/reference/repos#contents>`_ |
| 2940 | """ |
| 2941 | return self.get_contents(path, ref=ref) # type: ignore |
| 2942 | |
| 2943 | def get_contributors(self, anon: Opt[str] = NotSet) -> PaginatedList[NamedUser]: |
| 2944 | """ |
nothing calls this directly
no test coverage detected