From 30cf29782b2bac83207f8ebe6c58828e005b5389 Mon Sep 17 00:00:00 2001 From: Tauanny Furlanetto Date: Fri, 8 Sep 2023 13:21:30 -0300 Subject: [PATCH] lint: line too long --- barterdude/__init__.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/barterdude/__init__.py b/barterdude/__init__.py index a3fbf68..dd318f3 100644 --- a/barterdude/__init__.py +++ b/barterdude/__init__.py @@ -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,