We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a01f819 commit 76d3610Copy full SHA for 76d3610
netbox_custom_objects/models.py
@@ -1137,8 +1137,6 @@ def _check_recursion(self):
1137
Raises ValidationError if recursion is detected.
1138
"""
1139
# Check if this field points to the same custom object type (self-referential)
1140
- print(f"related_object_type_id: {self.related_object_type_id}, custom_object_type.object_type_id: {self.custom_object_type.object_type_id}")
1141
- breakpoint()
1142
if self.related_object_type_id == self.custom_object_type.object_type_id:
1143
return # Self-referential fields are allowed
1144
0 commit comments