We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ba16e5 commit 1771d72Copy full SHA for 1771d72
anta/models.py
@@ -168,16 +168,6 @@ class AntaCommand(BaseModel):
168
params: AntaParamsBaseModel = AntaParamsBaseModel()
169
use_cache: bool = True
170
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
181
@cached_property
182
def uid(self) -> str:
183
"""Generate a unique identifier for this command."""
0 commit comments