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 5d285b9 commit 036d6f6Copy full SHA for 036d6f6
codeflash/tracing/tracing_utils.py
@@ -41,7 +41,7 @@ def ignored_submodule_paths(module_root: str) -> list[Path]:
41
try:
42
return [Path(working_tree_dir, submodule.path).resolve() for submodule in git_repo.submodules]
43
except Exception as e:
44
- print(f"Failed to get submodule paths {str(e)}") # no logger since used in the tracer
+ print(f"Failed to get submodule paths {e!s}") # no logger since used in the tracer
45
return []
46
47
0 commit comments