Skip to content
This repository has been archived by the owner on Dec 1, 2023. It is now read-only.

Commit

Permalink
Make bandit happier
Browse files Browse the repository at this point in the history
  • Loading branch information
glennmatthews committed Jun 24, 2021
1 parent 0e44563 commit a11aa39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nautobot_ssot_servicenow/servicenow.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit a11aa39

Please sign in to comment.