From c7574394eb8b3f4c81318d70f3e92b4faad4d6e2 Mon Sep 17 00:00:00 2001 From: Justin Drew <2396364+jdrew82@users.noreply.github.com> Date: Thu, 21 Nov 2024 15:14:36 -0600 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Correct=20default=20to=20?= =?UTF-8?q?be=20a=20list.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nautobot_ssot/integrations/citrix_adm/jobs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautobot_ssot/integrations/citrix_adm/jobs.py b/nautobot_ssot/integrations/citrix_adm/jobs.py index 8fcd838f..cd3001e4 100644 --- a/nautobot_ssot/integrations/citrix_adm/jobs.py +++ b/nautobot_ssot/integrations/citrix_adm/jobs.py @@ -55,7 +55,7 @@ class CitrixAdmDataSource(DataSource, Job): # pylint: disable=too-many-instance hostname_mapping = StringVar( label="Hostname Mapping", description="List of tuples containing Device hostname regex patterns to assign to specified Role. ex: [('.*ilb.*', 'Internal Load-Balancer')]", - default={}, + default=[], required=False, ) tenant = ObjectVar(model=Tenant, queryset=Tenant.objects.all(), display_field="display_name", required=False)