fix: replace bare except clauses with specific exception types (#3164)#3197
fix: replace bare except clauses with specific exception types (#3164)#3197paulxg12 wants to merge 1 commit into
Conversation
Greptile SummaryThis PR replaces two bare
Confidence Score: 5/5Safe to merge — both changes narrow bare The No files require special attention. Important Files Changed
Reviews (1): Last reviewed commit: "fix: replace bare except clauses with sp..." | Re-trigger Greptile |
Closes #3164 — replaces bare
except:clauses inmulticore_utils.pywith specific exception types.Changes in
metaflow/multicore_utils.py:except:→except ImportError:(py2/py3 cPickle compat pattern)except:→except Exception:(child process error handler should allow SystemExit/KeyboardInterrupt to propagate to os._exit())