Skip to content
Snippets Groups Projects
Commit 45f3bf19 authored by Andreas Klöckner's avatar Andreas Klöckner Committed by Andreas Klöckner
Browse files

Drop IgnoredForequalityTag

parent b528e25b
No related branches found
No related tags found
No related merge requests found
Pipeline #568380 passed
......@@ -17,7 +17,7 @@ Pre-Defined Tags
"""
from typing import Tuple, Hashable, Optional
from pytools.tag import Tag, UniqueTag, IgnoredForEqualityTag
from pytools.tag import Tag, UniqueTag
from dataclasses import dataclass
from traceback import FrameSummary, StackSummary
......@@ -166,7 +166,7 @@ class _PytatoStackSummary:
# https://mypy.readthedocs.io/en/stable/additional_features.html#caveats-known-issues
# on why this can not be '@tag_dataclass'.
@dataclass(init=True, eq=True, frozen=True, repr=True)
class CreatedAt(UniqueTag, IgnoredForEqualityTag):
class CreatedAt(UniqueTag):
"""
A tag attached to a :class:`~pytato.Array` to store the traceback
of where it was created.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment