Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Unhide the implemented methods for ordering & repring the arith-texts #728

Merged
merged 1 commit into from
Oct 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion data_diff/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def alphanums_to_numbers(s1: str, s2: str):
return n1, n2


@attrs.define(frozen=True)
@attrs.define(frozen=True, eq=False, order=False, repr=False)
class ArithAlphanumeric(ArithString):
_str: str
_max_len: Optional[int] = None
Expand Down