(file_path: Path)
| 78 | |
| 79 | |
| 80 | def get_run_tmp_file(file_path: Path) -> Path: |
| 81 | if not hasattr(get_run_tmp_file, "tmpdir"): |
| 82 | get_run_tmp_file.tmpdir = TemporaryDirectory(prefix="codeflash_") |
| 83 | return Path(get_run_tmp_file.tmpdir.name) / file_path |
| 84 | |
| 85 | |
| 86 | def path_belongs_to_site_packages(file_path: Path) -> bool: |
no outgoing calls