This commit is contained in:
Felix Bargfeldt 2024-12-18 07:16:05 +01:00
parent 6deda94630
commit 94aee5115a
Signed by: Defelo
GPG key ID: 2A05272471204DD3
2 changed files with 14 additions and 1 deletions

View file

@ -29,7 +29,10 @@ from functools import cache, partial, reduce
from heapq import heapify, heappop, heappush
from pathlib import Path
import numpy as np
try:
import numpy as np
except:
pass
YEAR: int | None = None
DAY: int | None = None