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 1296da2 commit e81834fCopy full SHA for e81834f
codeflash/models/models.py
@@ -13,6 +13,7 @@
13
import re
14
import sys
15
from collections.abc import Collection
16
+from dataclasses import dataclass as dcdataclass
17
from enum import Enum, IntEnum
18
from pathlib import Path
19
from re import Pattern
@@ -83,7 +84,7 @@ class BestOptimization(BaseModel):
83
84
winning_replay_benchmarking_test_results: Optional[TestResults] = None
85
86
-@dataclass(frozen=True)
87
+@dcdataclass(frozen=True)
88
class BenchmarkKey:
89
module_path: str
90
function_name: str
0 commit comments