Skip to content

Commit

Permalink
fix: fix wrong function path
Browse files Browse the repository at this point in the history
  • Loading branch information
Kigstn committed Sep 5, 2022
1 parent 6e392c2 commit d3f9f1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bungio/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ async def generate_auth(self, code: str) -> AuthData:
"""

now = get_now_with_tz()
data = await self.request_access_token(code=code)
data = await self.http.request_access_token(code=code)

auth = AuthData(
membership_type=MISSING,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bungio"
version = "0.6.0"
version = "0.6.1"
description = "A destiny 2 / bungie api wrapper"
keywords = ["asyncio", "destiny", "destiny 2", "bungie", "api"]
readme = "README.md"
Expand Down

0 comments on commit d3f9f1a

Please sign in to comment.