How do StepLaunchers work with the new pythonic re...
# ask-community
z
How do StepLaunchers work with the new pythonic resources? I have a couple custom step launchers that I'd love to start porting over now that we finally upgraded Dagster, but it feels weird passing the step launcher resource as a parameter to an op that needs it but then not using the parameter at all within the op. Ideally it'd be completely transparent to the op, like it it now with
"required_resource_keys"={...}
. Do I just need to stick with
required_resource_keys
for now? Or can you mix
required_resource_keys
and pythonic resources?