Skip to content

Commit e81834f

Browse files
committed
dcdataclass
1 parent 1296da2 commit e81834f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

codeflash/models/models.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import re
1414
import sys
1515
from collections.abc import Collection
16+
from dataclasses import dataclass as dcdataclass
1617
from enum import Enum, IntEnum
1718
from pathlib import Path
1819
from re import Pattern
@@ -83,7 +84,7 @@ class BestOptimization(BaseModel):
8384
winning_replay_benchmarking_test_results: Optional[TestResults] = None
8485

8586

86-
@dataclass(frozen=True)
87+
@dcdataclass(frozen=True)
8788
class BenchmarkKey:
8889
module_path: str
8990
function_name: str

0 commit comments

Comments
 (0)