Skip to content

Commit 2f9cac6

Browse files
karthanistyrfguillot
authored andcommitted
Shorten line too under 120 chars
Signed-off-by: Antoine Mazeas <antoine@karthanis.net>
1 parent 05070f9 commit 2f9cac6

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

kanboard/client.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ def __getattr__(self, name):
7979
async def function(*args, **kwargs):
8080
return await self._event_loop.run_in_executor(
8181
None,
82-
functools.partial(self.execute, method=self._to_camel_case(self.get_funcname_from_async_name(name)), **kwargs))
82+
functools.partial(
83+
self.execute,
84+
method=self._to_camel_case(self.get_funcname_from_async_name(name)), **kwargs))
8385
return function
8486
else:
8587
def function(*args, **kwargs):

0 commit comments

Comments
 (0)