We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e87bfe2 commit 75a553eCopy full SHA for 75a553e
1 file changed
rimport
@@ -282,7 +282,8 @@ def main(argv: List[str] | None = None) -> int:
282
for p in paths:
283
try:
284
stage_data(p, root, staging_root)
285
- except Exception as e: # Keep CLI robust for batch runs
+ except Exception as e: # pylint: disable=broad-exception-caught
286
+ # General Exception keeps CLI robust for batch runs
287
errors += 1
288
print(f"rimport: error processing {p}: {e}", file=sys.stderr)
289
0 commit comments