diff --git a/python_modules/dagster-graphql/dagster_graphql/schema/roots/query.py b/python_modules/dagster-graphql/dagster_graphql/schema/roots/query.py index cf8958379b515..17812559afd32 100644 --- a/python_modules/dagster-graphql/dagster_graphql/schema/roots/query.py +++ b/python_modules/dagster-graphql/dagster_graphql/schema/roots/query.py @@ -668,7 +668,7 @@ def resolve_instigationStateOrError( @capture_error def resolve_unloadableInstigationStatesOrError( - self, graphene_info: ResolveInfo, instigationType: Optional[GrapheneInstigationType] = None # type: ignore (idk) + self, graphene_info: ResolveInfo, instigationType: Optional[GrapheneInstigationType] = None # type: ignore (idk) ): instigation_type = InstigatorType(instigationType) if instigationType else None return get_unloadable_instigator_states_or_error(graphene_info, instigation_type)