From ed260fca55f302e615cf280f89d826675b379af2 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 07:43:23 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- vine/synchronization.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vine/synchronization.py b/vine/synchronization.py index 115778b..139f363 100644 --- a/vine/synchronization.py +++ b/vine/synchronization.py @@ -32,7 +32,7 @@ def all_done(): Note that you cannot add new promises to a barrier after the barrier is fulfilled. """ - __slots__ = ( # noqa + __slots__ = ( 'p', 'args', 'kwargs', '_value', 'size', 'ready', 'reason', 'cancelled', 'finalized', '__weakref__',