Does anyone know how to use `case` with `mypy`? Wh...
# ask-community
j
Does anyone know how to use
case
with
mypy
? When I try to add a case to the flow, mypy throws
Module not callable
Copy code
with Flow("flow") as flow:
  case(task_result, True):
    other_task()