related to #486 and the fix provided in #504 won't work for the athletics as in 2025 and 2026 the correct name is "ATH", not "OAK". if you are iterating and grabbing team data by year. (i.e. assumed you don't know the teams that year).
for instance if you do `schedule_and_record(2025,"OAK"), you will get results, but it is all nans. the data is actually stored with team name "ATH". Now the list provided in #504 does not even show the "ATH" call shown, but to get any data on the athletics for 2025 and 2026, one needs to use "ATH", not "OAK.
Not sure if there is a better way to get the list of names or need to add an exception, but my current work around is for years after 2025 or 2026, to replace "OAK" with "ATH" with the team names.
related to #486 and the fix provided in #504 won't work for the athletics as in 2025 and 2026 the correct name is "ATH", not "OAK". if you are iterating and grabbing team data by year. (i.e. assumed you don't know the teams that year).
for instance if you do `schedule_and_record(2025,"OAK"), you will get results, but it is all nans. the data is actually stored with team name "ATH". Now the list provided in #504 does not even show the "ATH" call shown, but to get any data on the athletics for 2025 and 2026, one needs to use "ATH", not "OAK.
Not sure if there is a better way to get the list of names or need to add an exception, but my current work around is for years after 2025 or 2026, to replace "OAK" with "ATH" with the team names.