Skip to content
Snippets Groups Projects
Commit f6d6ae21 authored by Hugh Dickinson's avatar Hugh Dickinson
Browse files

Typing spec bug fix

parent 1189c32a
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ class shopping_client:
def get_basket(
self, convert_to_pandas: bool = False, reload: bool = False
) -> Union[list[dict], pd.DataFrame, None]:
) -> Union[list, pd.DataFrame, None]:
"""Retrieve the shopping basket for a user.
Prompts for access token if one was not supplied to constructor.
......@@ -59,7 +59,7 @@ class shopping_client:
Returns
-------
Union[list[dict], pd.DataFrame, None]
Union[list, pd.DataFrame, None]
Description of returned object.
"""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment