removes comments about circular dependencies #62

This commit is contained in:
ricardo.bartels@telekom.de
2021-10-26 14:27:10 +02:00
parent 322258d40f
commit efced66ec5

View File

@@ -1377,13 +1377,6 @@ class NBCluster(NetBoxObject):
class NBDevice(NetBoxObject):
"""
data key "primary_ip*" has "object" assigned as valid data type.
This has been done to avoid circular dependencies.
would be happy if someone could come up with a proper solution
"""
name = "device"
api_path = "dcim/devices"
primary_key = "name"
@@ -1411,13 +1404,6 @@ class NBDevice(NetBoxObject):
class NBVM(NetBoxObject):
"""
data key "primary_ip*" has "object" assigned as valid data type.
This has been done to avoid circular dependencies.
would be happy if someone could come up with a proper solution
"""
name = "virtual machine"
api_path = "virtualization/virtual-machines"
primary_key = "name"