From a11aa39bc7534f976be847294b5b9cf9f4f7cdce Mon Sep 17 00:00:00 2001 From: Glenn Matthews Date: Thu, 24 Jun 2021 16:24:59 -0400 Subject: [PATCH] Make bandit happier --- nautobot_ssot_servicenow/servicenow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nautobot_ssot_servicenow/servicenow.py b/nautobot_ssot_servicenow/servicenow.py index d41fcb8..cef51b6 100644 --- a/nautobot_ssot_servicenow/servicenow.py +++ b/nautobot_ssot_servicenow/servicenow.py @@ -11,7 +11,7 @@ class ServiceNowClient(Client): """Extend the pysnow Client with additional use-case-specific functionality.""" - def __init__(self, instance="", username="", password="", worker=None): + def __init__(self, instance=None, username=None, password=None, worker=None): """Create a ServiceNowClient with the appropriate environment parameters.""" super().__init__(instance=instance, user=username, password=password)