diff --git a/README.rst b/README.rst index 402da93..170ce81 100644 --- a/README.rst +++ b/README.rst @@ -24,7 +24,7 @@ pyspapi Installation ------------- -**Requires Python 3.8 or higher** +**Requires Python 3.12 or higher** *Windows* diff --git a/pyspapi/types/__init__.py b/pyspapi/types/__init__.py index 83c526d..cd53f02 100644 --- a/pyspapi/types/__init__.py +++ b/pyspapi/types/__init__.py @@ -1,5 +1,5 @@ -from pyspapi.types.me import Account +from pyspapi.types.me import Account, Card, City from pyspapi.types.payment import Item from pyspapi.types.users import User, UserCards -__all__ = ["Account", "Item", "User", "UserCards"] +__all__ = ["Account", "Card", "City", "Item", "User", "UserCards"]