Currently we use try/except in operators to catch TypeError exceptions. Operator implementations should not have to care about that. They should assume that they are getting deserialized value as input and compute whatever they want. If there is some issue deserializing, we should catch and warn that somewhere else.
Currently we use try/except in operators to catch
TypeErrorexceptions. Operator implementations should not have to care about that. They should assume that they are getting deserialized value as input and compute whatever they want. If there is some issue deserializing, we should catch and warn that somewhere else.