On 12/18/20 3:54 PM, Markus Armbruster wrote:
+ @contextmanager + def _temp_module(self, name: str) -> ContextManager[None]:
Doesn't quite typecheck; we want Iterator[None] -- I think we're typing the function that is yet-to-be-decorated -- mypy will handle typing the resulting function.
--js