New Items
- (22) Adds a toggle for including the pynautobot data as a dictionary key item. No change in the default behavior. Now you can disable this with an optional key to the inventory of `pynautobot_dict`.
python
nornir_no_pynb_dict = InitNornir(
inventory={
"plugin": "NautobotInventory",
"options": {
"nautobot_url": "http://mock.example.com",
"nautobot_token": "0123456789abcdef01234567890",
"pynautobot_dict": False,
},
},
logging={"enabled": False},
)
`