Skip to content

Commit

Permalink
fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
offish committed Feb 13, 2024
1 parent bd4b2f0 commit 1c5e231
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/tf2_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = "tf2-utils"
__author__ = "offish"
__version__ = "2.0.8"
__version__ = "2.0.9"
__license__ = "MIT"

from .sku import (
Expand Down
2 changes: 1 addition & 1 deletion src/tf2_utils/prices_tf.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def get_prices_till_page(

while current_page < max_page:
try:
response = self.prices_tf.get_prices(current_page)
response = self.get_prices(current_page)
except RateLimited:
timeout = 60

Expand Down

0 comments on commit 1c5e231

Please sign in to comment.