We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbefff8 commit b721e28Copy full SHA for b721e28
src/utils.py
@@ -95,9 +95,8 @@ def default(self, o):
95
elif evaluate_post_process is not None and callable(evaluate_post_process):
96
evaluate_post_process()
97
98
- except (AttributeError, TypeError, ValueError) as e:
99
-- logger.error(f"Error handling Flight object corruption: {e}")
100
- logger.exception("Error handling Flight object corruption")
+ except (AttributeError, TypeError, ValueError):
+ logger.exception("Error handling Flight object corruption")
101
try:
102
solution = np.array(obj.solution)
103
except (AttributeError, TypeError, ValueError):
0 commit comments