]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
trailing comma? 3157/head
authorMin RK <benjaminrk@gmail.com>
Thu, 16 Jun 2022 14:32:37 +0000 (16:32 +0200)
committerMin RK <benjaminrk@gmail.com>
Thu, 16 Jun 2022 14:33:09 +0000 (16:33 +0200)
black seems to have changed its mind

tornado/platform/asyncio.py

index c35955ccfd449669ea4227570ed5e7bca7177cf8..2ac59e36c4791a5624e7181bf9d8b8064c4bb6a3 100644 (file)
@@ -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)