diff --git a/nhlpy/_version.py b/nhlpy/_version.py index 09e861a..3e2314f 100644 --- a/nhlpy/_version.py +++ b/nhlpy/_version.py @@ -1,3 +1,3 @@ # Should this be driven by the main pyproject.toml file? yes, is it super convoluted? yes, can it wait? sure -__version__ = "2.2.2" +__version__ = "2.2.3" diff --git a/nhlpy/api/schedule.py b/nhlpy/api/schedule.py index b05d7fd..7757975 100644 --- a/nhlpy/api/schedule.py +++ b/nhlpy/api/schedule.py @@ -34,7 +34,6 @@ def get_schedule_by_team_by_week(self, team_abbr: str, date: Optional[str] = Non This returns the schedule for the team (team_abbr) for the week set or the current week if no week is specified. :param date: Optional date, in which to search the week of. In format YYYY-MM-DD. Example "2024-02-10". - :param team_abbr: The 3 letter abbreviation of the team. BUF, TOR, etc :return: """ diff --git a/pyproject.toml b/pyproject.toml index 0def665..0abd627 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "nhl-api-py" -version = "2.2.2" +version = "2.2.3" description = "NHL API. For standings, team stats, outcomes, player information. Contains each individual API endpoint as well as convience methods for easy data loading in Pandas or any ML applications." authors = ["Corey Schaf "] readme = "README.md"