From ebf480b06a6655d6885cfe297987b7f08fd3e25c Mon Sep 17 00:00:00 2001 From: Samuele Reghenzi <sam@reghenzi.cloud> Date: Tue, 15 Dec 2020 12:03:20 +0100 Subject: [PATCH] black fmt --- monads/future.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/monads/future.py b/monads/future.py index 3ba3149..6179660 100644 --- a/monads/future.py +++ b/monads/future.py @@ -63,7 +63,9 @@ class Future(Monad[T]): __rshift__ = bind - def __and__(self, other: Awaitable[Callable[[T], S]]) -> Future[S]: # pragma: no cover + def __and__( + self, other: Awaitable[Callable[[T], S]] + ) -> Future[S]: # pragma: no cover return Future.apply(self, other) __mul__ = __rmul__ = map