Skip to content

Commit

Permalink
added new requirements
Browse files Browse the repository at this point in the history
Signed-off-by: Shashank Reddy Boyapally <[email protected]>
  • Loading branch information
shashank-boyapally committed Oct 1, 2024
1 parent 126da7b commit 834ca90
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions fmatch/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions fmatch/splunk_matcher.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#pylint: disable = C0209
#pylint: disable = C0209, R0913
"""
Matcher for splunk datasource
"""
Expand All @@ -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
Expand Down

0 comments on commit 834ca90

Please sign in to comment.