You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(78c4ccb) Resolved a TypeError encountered in Python versions <3.10 due to the use of a staticmethod object as a decorator. In Python versions <3.10, staticmethod objects are not callable, causing an error when decorating methods within the same class. The _ensure_connection decorator was moved outside of the CacheManager class, eliminating the need for the staticmethod decorator. This fix ensures consistent behavior across all Python versions (>=3.7) officially supported by Ditch The Bell, as specified in pyproject.toml.