Skip to content

Commit

Permalink
add missing quotation mark
Browse files Browse the repository at this point in the history
  • Loading branch information
felixblochwitz committed Sep 17, 2024
1 parent e9b492e commit d997aa8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nfl_data_py/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ def import_qbr(years=None, level='nfl', frequency='season'):

def __validate_pfr_inputs(s_type, years=None):
if s_type not in ('pass', 'rec', 'rush', 'def'):
raise ValueError('s_type variable must be one of "pass", "rec","rush", or "def.')
raise ValueError('s_type variable must be one of "pass", "rec","rush", or "def".')

if years is None:
return []
Expand Down

0 comments on commit d997aa8

Please sign in to comment.