1
0
Fork 0
mirror of https://github.com/correl/typesafe-monads.git synced 2025-03-29 01:09:10 -09:00

black fmt

This commit is contained in:
Samuele Reghenzi 2020-12-15 12:03:20 +01:00
parent 7e702c0896
commit ebf480b06a

View file

@ -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