Skip to content

Commit

Permalink
Increase investing timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
ymyke committed Jul 3, 2022
1 parent 0d724c8 commit dd5846d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tessa"
version = "0.3.2"
version = "0.3.3"
description = "Find financial assets and get their price history without worrying about different APIs or rate limiting."
authors = ["ymyke"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tessa/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.3.2"
__version__ = "0.3.3"

from .price import price_history, price_point, price_point_strict, price_latest
from .search import search
2 changes: 1 addition & 1 deletion tessa/rate_limiter.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
original_guards = {
# `reset_guards` will add `last_call` to each guard.
"investing": {
"wait_seconds": 1,
"wait_seconds": 2,
},
"crypto": {
"wait_seconds": 1,
Expand Down

0 comments on commit dd5846d

Please sign in to comment.