Skip to content

Commit

Permalink
lint: line too long
Browse files Browse the repository at this point in the history
  • Loading branch information
TauannyFurlanetto committed Sep 8, 2023
1 parent b136085 commit 30cf297
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion barterdude/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ def add_callback_endpoint(
mock_dependencies: Iterable[Tuple[Any, str]] = None,
):
async def hook_to_callback(req: web.Request):
return await self._call_callback_endpoint(req, hook, mock_dependencies)
return await self._call_callback_endpoint(
req,
hook,
mock_dependencies
)

self.add_endpoint(
routes=routes,
Expand Down

0 comments on commit 30cf297

Please sign in to comment.