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:
parent
7e702c0896
commit
ebf480b06a
1 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue