From 9c728bf58e41943259fc6d775733642a1df88431 Mon Sep 17 00:00:00 2001 From: Abhimanyu Saharan Date: Tue, 9 May 2023 15:44:27 +0530 Subject: [PATCH] removes extra info --- docs/administration/netbox-shell.md | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/administration/netbox-shell.md b/docs/administration/netbox-shell.md index 4f9d0d29c..21cef01b2 100644 --- a/docs/administration/netbox-shell.md +++ b/docs/administration/netbox-shell.md @@ -157,12 +157,6 @@ New objects can be created by instantiating the desired model, defining values f >>> myvlan.save() ``` -Alternatively, the above can be performed as a single operation. (Note, however, that `save()` does _not_ return the new instance for reuse.) - -``` ->>> VLAN(vid=123, name='MyNewVLAN', site=Site.objects.get(pk=7)).save() -``` - To modify an existing object, we retrieve it, update the desired field(s), and call `save()` again. ```