Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions codeflash/models/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import annotations

from collections import Counter, defaultdict
from functools import lru_cache
from typing import TYPE_CHECKING

import libcst as cst
Expand Down Expand Up @@ -411,6 +412,7 @@ def get_test_type_by_original_file_path(self, file_path: Path) -> TestType | Non
)

@staticmethod
@lru_cache(maxsize=1024)
def _normalize_path_for_comparison(path: Path) -> str:
"""Normalize a path for cross-platform comparison.

Expand Down
Loading