From e62527a034381819f49fa77df8dc444380705670 Mon Sep 17 00:00:00 2001 From: Shashank Reddy Boyapally Date: Wed, 2 Oct 2024 11:01:28 -0500 Subject: [PATCH] fixed pylint errors Signed-off-by: Shashank Reddy Boyapally --- fmatch/splunk_matcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmatch/splunk_matcher.py b/fmatch/splunk_matcher.py index fd5113f..3e70514 100644 --- a/fmatch/splunk_matcher.py +++ b/fmatch/splunk_matcher.py @@ -9,7 +9,7 @@ class SplunkMatcher: """Splunk data source matcher """ - def __init__(self, host, port, username, password, indice): + def __init__(self, host, port, username, password, indice): #pylint: disable = R0917 self.indice = indice self.service = client.connect( host=host, port=port, username=username, password=password