Skip to content

Commit 03357e9

Browse files
fixes
1 parent df53452 commit 03357e9

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

Diff for: python-avd/pyavd/_schema/models/avd_model.py

-7
Original file line numberDiff line numberDiff line change
@@ -169,10 +169,6 @@ def __bool__(self) -> bool:
169169
"""
170170
return bool(self.__dict__) or bool(self._custom_data)
171171

172-
def __hash__(self) -> int:
173-
LOGGER.warning("__hash__")
174-
return hash(((key, hash(value)) for key, value in self.items()))
175-
176172
def __eq__(self, other: object) -> bool:
177173
return self._compare(other)
178174

@@ -294,9 +290,6 @@ def _deepmerge(self, other: Self, list_merge: Literal["append_unique", "append",
294290
for field, new_value in other.items():
295291
old_value = self._get_defined_attr(field)
296292

297-
if field == "ip_igmp_snooping":
298-
LOGGER.warning("%s, %s, %s", field, old_value, new_value)
299-
300293
if old_value == new_value:
301294
continue
302295

0 commit comments

Comments
 (0)