Oh, so, the issue isn’t the try-else block. The is...
# development
h
Oh, so, the issue isn’t the try-else block. The issue is that
exit_code = self.scheduler_session.run_goal_rule(goal_product, params)
is inferred as
Any
because
run_goal_rule()
probably doesn’t have a type annotation
🔥 2