Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor: Fixes doc strings in stats.py. Bumps patch ver #69

Merged
merged 1 commit into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nhlpy/_version.py
Original file line number Diff line number Diff line change
@@ -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.10.1"
__version__ = "2.10.2"
4 changes: 2 additions & 2 deletions nhlpy/api/stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -173,8 +173,8 @@ def skater_stats_summary_simple(
default_cayenne_exp: str = None,
) -> List[dict]:
"""
Example: c.stats.skater_stats_summary(start_season="20232024", end_season="20232024")
c.stats.skater_stats_summary(franchise_id=10, start_season="20232024", end_season="20232024")
Example: c.stats.skater_stats_summary_simple(start_season="20232024", end_season="20232024")
c.stats.skater_stats_summary_simple(franchise_id=10, start_season="20232024", end_season="20232024")
:param start_season: Season id, in format 20202021, 20212022, etc, that will be the start of the range.
:param end_season: Season id for the end range.
:param franchise_id: String, The ID of the franchise. Not to be confused with team_id found on other endpoints.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "nhl-api-py"
version = "2.10.1"
version = "2.10.2"
description = "NHL API (Updated for 2024/2025) and EDGE Stats. For standings, team stats, outcomes, player information. Contains each individual API endpoint as well as convience methods as well as pythonic query builder for more indepth EDGE stats."
authors = ["Corey Schaf <[email protected]>"]
readme = "README.md"
Expand Down
Loading