File tree Expand file tree Collapse file tree 3 files changed +0
-17
lines changed
Expand file tree Collapse file tree 3 files changed +0
-17
lines changed Original file line number Diff line number Diff line change @@ -270,20 +270,8 @@ def __str__(self):
270270 circuit = Circuits
271271
272272
273- class CablePath (Record ):
274- path = JsonField
275-
276-
277273class Cables (Record ):
278274 def __str__ (self ):
279275 if len (self .a_terminations ) == 1 and len (self .b_terminations ) == 1 :
280276 return "{} <> {}" .format (self .a_terminations [0 ], self .b_terminations [0 ])
281277 return "Cable #{}" .format (self .id )
282-
283-
284- class ModuleTypeProfiles (Record ):
285- schema = JsonField
286-
287-
288- class ModuleTypes (Record ):
289- attribute_data = JsonField
Original file line number Diff line number Diff line change 1717from pynetbox .core .response import JsonField , Record
1818
1919
20- class UserConfig (Record ):
21- data = JsonField
22-
23-
2420class Users (Record ):
2521 def __str__ (self ):
2622 return self .username
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ class VirtualMachines(Record):
2323 primary_ip = IpAddresses
2424 primary_ip4 = IpAddresses
2525 primary_ip6 = IpAddresses
26- local_context_data = JsonField
2726 config_context = JsonField
2827
2928 @property
You can’t perform that action at this time.
0 commit comments