From efced66ec5ff8c71375974eaa5292841500dae7e Mon Sep 17 00:00:00 2001 From: "ricardo.bartels@telekom.de" Date: Tue, 26 Oct 2021 14:27:10 +0200 Subject: [PATCH] removes comments about circular dependencies #62 --- module/netbox/object_classes.py | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/module/netbox/object_classes.py b/module/netbox/object_classes.py index 01d0c3c..6bf964d 100644 --- a/module/netbox/object_classes.py +++ b/module/netbox/object_classes.py @@ -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"