Spaces:
Build error
Build error
import os | |
DATA_DIR = 'data' | |
SEASONS = sorted([int(folder) for folder in os.listdir(DATA_DIR) if not folder.startswith('.')]) | |
LATEST_SEASON = max(SEASONS) | |