Skip to content

Commit bc44a2f

Browse files
committed
Update models.py
1 parent 3159233 commit bc44a2f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

codeflash/models/models.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@
1313
import re
1414
import sys
1515
from collections.abc import Collection
16-
from dataclasses import dataclass as dcdataclass
1716
from enum import Enum, IntEnum
1817
from pathlib import Path
1918
from re import Pattern
@@ -84,7 +83,7 @@ class BestOptimization(BaseModel):
8483
winning_replay_benchmarking_test_results: Optional[TestResults] = None
8584

8685

87-
@dcdataclass(frozen=True)
86+
@dataclass(frozen=True)
8887
class BenchmarkKey:
8988
module_path: str
9089
function_name: str

0 commit comments

Comments
 (0)