From: Min RK Date: Thu, 16 Jun 2022 14:32:37 +0000 (+0200) Subject: trailing comma? X-Git-Tag: v6.2.0b2~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F3157%2Fhead;p=thirdparty%2Ftornado.git trailing comma? black seems to have changed its mind --- diff --git a/tornado/platform/asyncio.py b/tornado/platform/asyncio.py index c35955ccf..2ac59e36c 100644 --- a/tornado/platform/asyncio.py +++ b/tornado/platform/asyncio.py @@ -277,7 +277,7 @@ class BaseAsyncIOLoop(IOLoop): self, executor: Optional[concurrent.futures.Executor], func: Callable[..., _T], - *args: Any + *args: Any, ) -> Awaitable[_T]: return self.asyncio_loop.run_in_executor(executor, func, *args)