Closed
Description
I was trying to define the following alias:
from typing import Callable, Dict, Set, Any, DefaultDict
from pathlib import Path
Recipe = Callable[["Tracker", Dict[str, Any], Path], Set[Path]]
but I get this error:
error: Name 'Tracker' is not defined
But of course the whole point of forwarding references is that it shouldn't have to be defined.