Skip to content

Commit

Permalink
Fixed missing data
Browse files Browse the repository at this point in the history
  • Loading branch information
Bastian-Kuhn committed Jul 12, 2023
1 parent 6d0a3cc commit 51e346c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/modules/netbox/syncer.py
Original file line number Diff line number Diff line change
Expand Up @@ -515,7 +515,7 @@ def import_hosts(self):
'primary_ip6',
]

for device, _data in self.get_devices().items():
for device, data in self.get_devices().items():
host_obj = Host.get_host(device)
labels = {}
print(f"\n{CC.HEADER}Process Device: {device}{CC.ENDC}")
Expand Down

0 comments on commit 51e346c

Please sign in to comment.