Skip to content

Commit 1771d72

Browse files
Remove commented code
1 parent 0ba16e5 commit 1771d72

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

anta/models.py

-10
Original file line numberDiff line numberDiff line change
@@ -168,16 +168,6 @@ class AntaCommand(BaseModel):
168168
params: AntaParamsBaseModel = AntaParamsBaseModel()
169169
use_cache: bool = True
170170

171-
# def __hash__(self) -> int:
172-
# """Implement hashing based on the `uid` property."""
173-
# return hash(self.uid)
174-
175-
# def __eq__(self, other: object) -> bool:
176-
# """Implement equality based on the `uid` property."""
177-
# if not isinstance(other, AntaCommand):
178-
# return False
179-
# return self.uid == other.uid
180-
181171
@cached_property
182172
def uid(self) -> str:
183173
"""Generate a unique identifier for this command."""

0 commit comments

Comments
 (0)