From 834ca907adacf3eb56300611999fcbca8f58a576 Mon Sep 17 00:00:00 2001 From: Shashank Reddy Boyapally Date: Tue, 1 Oct 2024 00:15:32 -0500 Subject: [PATCH] added new requirements Signed-off-by: Shashank Reddy Boyapally --- fmatch/requirements.txt | 2 ++ fmatch/splunk_matcher.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/fmatch/requirements.txt b/fmatch/requirements.txt index 74ccdbd..adc7dfb 100644 --- a/fmatch/requirements.txt +++ b/fmatch/requirements.txt @@ -22,6 +22,7 @@ mdurl==0.1.2 more-itertools==10.2.0 nh3==0.2.15 numpy==1.26.3 +orjson==3.10.7 packaging==23.2 pandas==2.1.4 pip-name==1.0.2 @@ -45,6 +46,7 @@ requests-toolbelt==1.0.0 rfc3986==2.0.0 rich==13.7.0 six==1.16.0 +splunk-sdk==2.0.2 tomlkit==0.12.3 twine==4.0.2 tzdata==2023.4 diff --git a/fmatch/splunk_matcher.py b/fmatch/splunk_matcher.py index 1aaaaee..a1b3431 100644 --- a/fmatch/splunk_matcher.py +++ b/fmatch/splunk_matcher.py @@ -1,4 +1,4 @@ -#pylint: disable = C0209 +#pylint: disable = C0209, R0913 """ Matcher for splunk datasource """ @@ -9,7 +9,7 @@ class SplunkMatcher: """Splunk data source matcher """ - def __init__(self, host, port, username, password, indice): #pylint: disable = R0913 + def __init__(self, host, port, username, password, indice): self.indice = indice self.service = client.connect( host=host, port=port, username=username, password=password