Skip to content

Commit

Permalink
Accept base_url in Naver, Google and Defillama (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
martinkersner authored May 14, 2024
1 parent b2b6669 commit f0ece3b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion datamaxi/defillama/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def __init__(self, api_key=None, **kwargs: Any):
"""
if "base_url" not in kwargs:
kwargs["base_url"] = BASE_URL
super().__init__(api_key, **kwargs)
super().__init__(api_key, **kwargs)

def protocols(self) -> List[str]:
"""Get supported protocols
Expand Down
2 changes: 1 addition & 1 deletion datamaxi/google/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, api_key=None, **kwargs: Any):
"""
if "base_url" not in kwargs:
kwargs["base_url"] = BASE_URL
super().__init__(api_key, **kwargs)
super().__init__(api_key, **kwargs)

def keywords(self) -> List[str]:
"""Get Google trend supported keywords
Expand Down
2 changes: 1 addition & 1 deletion datamaxi/naver/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def __init__(self, api_key=None, **kwargs: Any):
"""
if "base_url" not in kwargs:
kwargs["base_url"] = BASE_URL
super().__init__(api_key, **kwargs)
super().__init__(api_key, **kwargs)

def keywords(self) -> List[str]:
"""Get Naver trend supported keywords
Expand Down

0 comments on commit f0ece3b

Please sign in to comment.