Spaces:
Build error
Build error
File size: 155 Bytes
eaf2663 |
1 2 3 4 5 6 |
import os
DATA_DIR = 'data'
SEASONS = sorted([int(folder) for folder in os.listdir(DATA_DIR) if not folder.startswith('.')])
LATEST_SEASON = max(SEASONS)
|