From 78b9d5ae8b566f4285e9f61a425af073bd919dd6 Mon Sep 17 00:00:00 2001 From: TheNetworkGuy Date: Wed, 22 May 2024 09:23:07 +0200 Subject: [PATCH] Fixed trailing white space error. --- netbox_zabbix_sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netbox_zabbix_sync.py b/netbox_zabbix_sync.py index 33e9d16..d586c2e 100755 --- a/netbox_zabbix_sync.py +++ b/netbox_zabbix_sync.py @@ -416,7 +416,7 @@ class NetworkDevice(): for item in field_list: value = value[item] if value else None # Check if the result is usable and expected - # We want to apply any int or float 0 values, + # We want to apply any int or float 0 values, # even if python thinks those are empty. if ((value and isinstance(value, int | float | str )) or (isinstance(value, int | float) and int(value) ==0)):