Skip to content

Commit cc84732

Browse files
committed
normalize
1 parent 16d21e7 commit cc84732

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/code_utils/coverage_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def generate_candidates(source_code_path: Path) -> list[str]:
4545
current_path = source_code_path.parent
4646

4747
while current_path != current_path.parent:
48-
candidate_path = str(Path(current_path.name) / candidates[-1])
48+
candidate_path = (Path(current_path.name) / candidates[-1]).as_posix()
4949
candidates.append(candidate_path)
5050
current_path = current_path.parent
5151

0 commit comments

Comments
 (0)