mirror of
https://github.com/RGBCube/GitHubWrapper
synced 2025-05-28 03:35:09 +00:00
Fix org issue
This commit is contained in:
parent
2492760d97
commit
a998593118
1 changed files with 1 additions and 1 deletions
|
@ -125,6 +125,6 @@ class GHClient:
|
||||||
async def get_org(self, **kwargs) -> Organization:
|
async def get_org(self, **kwargs) -> Organization:
|
||||||
"""Fetch a Github organization from it's name"""
|
"""Fetch a Github organization from it's name"""
|
||||||
org_name = kwargs.get('org')
|
org_name = kwargs.get('org')
|
||||||
return Organization(await http.get_org(self.session, org_name), self.session)
|
return await http.get_org(self.session, org_name)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue