Skip to content

Instantly share code, notes, and snippets.

@pavdwest
pavdwest / main.py
Last active July 10, 2022 20:09
Python MaybeMonad
from __future__ import annotations
from asyncio.log import logger
from typing import Callable
class MaybeMonad():
def __init__(
self,
value: object
) -> None: