Skip to content

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
euanwm committed May 25, 2022
1 parent 2f7fd3e commit 362abe0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

setup(
name="sport80",
version="2.2.0",
version="2.2.1",
description="Python API interface for the Sport80 sites",
long_description='Intentionally empty',
url="https://github.com/euanwm/sport80_api",
Expand Down
2 changes: 1 addition & 1 deletion sport80/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
from .helpers import pull_tables, convert_to_json, convert_to_py
from .pages_enum import EndPoint

__version__ = "2.2.0"
__version__ = "2.2.1"
__author__ = "Euan Meston"
2 changes: 1 addition & 1 deletion sport80/sport80.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def event_index(self, year: int) -> dict:
""" Now working """
return self.__http_client.get_event_index(year)

def event_results(self, event_dict: dict) -> dict:
def event_results(self, event_dict: dict) -> Union[list, dict]:
""" Now working """
return self.__http_client.get_event_results(event_dict)

Expand Down

0 comments on commit 362abe0

Please sign in to comment.