From d997aa89ecc1c1dfe0009cbeafaf35e371a83186 Mon Sep 17 00:00:00 2001 From: fblochwitz Date: Tue, 17 Sep 2024 11:59:44 +0200 Subject: [PATCH] add missing quotation mark --- nfl_data_py/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nfl_data_py/__init__.py b/nfl_data_py/__init__.py index b493ca9..1f25cd8 100644 --- a/nfl_data_py/__init__.py +++ b/nfl_data_py/__init__.py @@ -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 []