From 161b310ba379afdd91be7240549823205db85e41 Mon Sep 17 00:00:00 2001 From: Raymond Kuiper Date: Wed, 25 Jun 2025 17:07:46 +0200 Subject: [PATCH] corrected linting error --- modules/hostgroups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hostgroups.py b/modules/hostgroups.py index 954c218..5916c0a 100644 --- a/modules/hostgroups.py +++ b/modules/hostgroups.py @@ -120,7 +120,7 @@ class Hostgroup: if hg_item.startswith(("'", '"')) and hg_item.endswith(("'", '"')): hg_item = hg_item.strip("\'") hg_item = hg_item.strip('\"') - hg_output.append(hg_item) + hg_output.append(hg_item) else: # Check if a custom field exists with this name cf_data = self.custom_field_lookup(hg_item)