Skip to content

Commit febe0ec

Browse files
committed
remove unused import
1 parent bebe856 commit febe0ec

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

codeflash/verification/comparator.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,6 @@
6161
except ImportError:
6262
HAS_JAX = False
6363

64-
try:
65-
import attrs # type: ignore
66-
67-
HAS_ATTRS = True
68-
except ImportError:
69-
HAS_ATTRS = False
70-
7164

7265
def comparator(orig: Any, new: Any, superset_obj=False) -> bool: # noqa: ANN001, ANN401, FBT002, PLR0911
7366
"""Compare two objects for equality recursively. If superset_obj is True, the new object is allowed to have more keys than the original object. However, the existing keys/values must be equivalent."""

0 commit comments

Comments
 (0)