Skip to content

Commit

Permalink
Forgot two **
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorflahardy committed Jul 19, 2021
1 parent a01c28a commit 0d1d902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tixte/http.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self, session: Optional[aiohttp.ClientSession] = None) -> None:


async def request(self, route: Route, **kwargs: Any) -> Dict:
async with self.session.request(route.method, route.url, {**route.parameters, **kwargs}) as resp:
async with self.session.request(route.method, route.url, **{**route.parameters, **kwargs}) as resp:
if resp.status != 200:
raise NotImplementedError("API status was not 200, this hasn't been implemented yet.")

Expand Down

1 comment on commit 0d1d902

@trevorflahardy
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This was dropped, not appealing to the eyes.

Please sign in to comment.