Klim Lyapin

Results 2 comments of Klim Lyapin

Encountered with the same issue and may confirm that the latest release of `typing-inspect` _(`0.8.0`)_ is breaking it because with `0.7.1` it worked like a charm.

A short reproducible example on Dagster 1.4.3 unless you comment out `FirstResource.teardown_after_execution`. ```python from dagster import Definitions, asset, ConfigurableResource, OpExecutionContext, InitResourceContext class FirstResource(ConfigurableResource): def setup_for_execution(self, context: InitResourceContext) -> None: ......