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 3159233 commit bc44a2fCopy full SHA for bc44a2f
codeflash/models/models.py
@@ -13,7 +13,6 @@
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
@@ -84,7 +83,7 @@ class BestOptimization(BaseModel):
84
83
winning_replay_benchmarking_test_results: Optional[TestResults] = None
85
86
87
-@dcdataclass(frozen=True)
+@dataclass(frozen=True)
88
class BenchmarkKey:
89
module_path: str
90
function_name: str
0 commit comments