We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug When I try to retrieve goals_against, I receive "None" as a response.
To Reproduce from sportsipy.nhl.teams import Team
nashville = Team('NSH')
print(nashville.goals_for) print(nashville.goals_against)
Expected behavior I expect to receive,
30 37
30 for goals_for, and 37 for goals_against.
I receive, however,
30 None
Screenshots
Desktop (please complete the following information):
Additional context Along with missing goals_against, I am also missing pdo_at_even_strength and total_goals_per_game.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When I try to retrieve goals_against, I receive "None" as a response.
To Reproduce
from sportsipy.nhl.teams import Team
nashville = Team('NSH')
print(nashville.goals_for)
print(nashville.goals_against)
Expected behavior
I expect to receive,
30
37
30 for goals_for, and 37 for goals_against.
I receive, however,
30
None
Screenshots
Desktop (please complete the following information):
Additional context
Along with missing goals_against, I am also missing pdo_at_even_strength and total_goals_per_game.
The text was updated successfully, but these errors were encountered: