Skip to content

Commit

Permalink
added types for constructor
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 Jul 9, 2024
1 parent d315a8a commit 9d805f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fmatch/matcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ class Matcher:

def __init__(
self,
index="ospst-perf-scale-ci",
level=logging.INFO,
ES_URL=os.getenv("ES_SERVER"),
verify_certs=True,
index: str ="ospst-perf-scale-ci",
level: int =logging.INFO,
ES_URL: str =os.getenv("ES_SERVER"),
verify_certs: bool =True,
):
self.index = index
self.es_url = ES_URL
Expand Down

0 comments on commit 9d805f0

Please sign in to comment.