Shantanu Jain wrote:
> There's a better and more flexible way to accomplish this kind of lie
> already:
> ```
> if typing.TYPE_CHECKING:
> mydataclass = dataclasses.dataclass
> else:
> def mydataclass(...): ...
> ```
Would PEP681 exist if that were true?