1
0

Do not attach limiter without any limiter args
Some checks are pending
Python Ruff Code Quality / ruff (push) Waiting to run
Run Python tests (through Pytest) / Test (push) Waiting to run
Verify Python project can be installed, loaded and have version checked / Test (push) Waiting to run

This commit is contained in:
Jon Michael Aanes 2025-03-05 09:57:03 +01:00
parent 54429e79b5
commit b9cef7ec63

View File

@ -39,6 +39,7 @@ except ImportError:
'Library requests_ratelimiter could not be loaded. Automatic ratelimit configuration will not be used.',
)
__all__ = ['initialize_session', 'setup_limiter', '__version__']
CACHE_PATH_FROM_HOME = '.local/share/usagi-keiretsu/fin_data/http_cache'
@ -82,7 +83,7 @@ def setup_limiter(
Will always return the given session itself.
"""
if requests_ratelimiter and limiter_args:
if requests_ratelimiter and len(limiter_args) > 0:
session.mount(url_prefix, requests_ratelimiter.LimiterAdapter(**limiter_args))
if requests_cache and expire_after:
if settings := getattr(session, 'settings', None):