Skip to content

Commit

Permalink
feat: increase default timeout value
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnsilva committed Dec 10, 2023
1 parent ab1cc67 commit e5aa367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion semanticscholar/AsyncSemanticScholar.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AsyncSemanticScholar:

def __init__(
self,
timeout: int = 10,
timeout: int = 30,
api_key: str = None,
api_url: str = None,
debug: bool = False
Expand Down
2 changes: 1 addition & 1 deletion semanticscholar/SemanticScholar.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class SemanticScholar():

def __init__(
self,
timeout: int = 10,
timeout: int = 30,
api_key: str = None,
api_url: str = None,
debug: bool = False
Expand Down

0 comments on commit e5aa367

Please sign in to comment.