From ac206e06ef278f5eabf31cb8f300fc5cba32b5f9 Mon Sep 17 00:00:00 2001 From: VarMonke Date: Mon, 28 Mar 2022 22:10:15 +0530 Subject: [PATCH] revert to http --- Github/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Github/main.py b/Github/main.py index 3e64811..48a455d 100644 --- a/Github/main.py +++ b/Github/main.py @@ -80,7 +80,7 @@ class GHClient: return User(await http.get_user(self.session, username), self.session) async def get_repo(self, owner: str, repo_name: str) -> Repository: - """Fetch a Github repository from it's name.""" + """Fetch aGithub repository from it's name.""" return Repository(await http.get_repo_from_name(self.session, owner, repo_name), self.session) async def get_org(self, org_name: str) -> 'Org':