Greg Alexander

Results 3 issues of Greg Alexander

Resolves issue with play_by_play data having incorrect old_game_id values. For example, all old_game_id values in the play_by_play_2023 for week 15 start with "2022" but they begin with "2023" in the...

Use isinstance instead of type for type checking ### Why Use Python's builtin isinstance instead of type for type checking. ### How Changed all type(variable) == str/int to isinstance(variable, str/int)....