Skip to content

Commit

Permalink
Merge pull request #30 from MajesticFalcon/develop
Browse files Browse the repository at this point in the history
fix python syntax in examples in usage.md
  • Loading branch information
wvandeun authored Sep 9, 2021
2 parents 5428547 + d72886e commit 9426593
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ nr = InitNornir(
inventory={
"plugin": NetBoxInventory2,
"options": {
"nb_url": "http://netbox.local:8000"
"nb_token": "1234567890"
"nb_url": "http://netbox.local:8000",
"nb_token": "1234567890",
"filter_parameters": {"site": "site1"}
}
}
Expand All @@ -160,8 +160,8 @@ nr = InitNornir(
inventory={
"plugin": NetBoxInventory2,
"options": {
"nb_url": "http://netbox.local:8000"
"nb_token": "1234567890"
"nb_url": "http://netbox.local:8000",
"nb_token": "1234567890",
"filter_parameters": {
"site": "site1",
"platform": "cisco_ios",
Expand All @@ -177,8 +177,8 @@ nr = InitNornir(
inventory={
"plugin": NetBoxInventory2,
"options": {
"nb_url": "http://netbox.local:8000"
"nb_token": "1234567890"
"nb_url": "http://netbox.local:8000",
"nb_token": "1234567890",
"filter_parameters": {
"site": ["site1", "site2"],
"platform": "cisco_ios",
Expand Down

0 comments on commit 9426593

Please sign in to comment.