This commit is contained in:
2026-01-04 22:35:42 -01:00
parent 9276ff0c47
commit 9d65d4a862
7 changed files with 66 additions and 9 deletions

View File

@@ -30,3 +30,7 @@ def toInt(v: str) -> int | None:
return int(v)
except ValueError:
return None
def print_ym(dt: datetime) -> str:
return dt.strftime("%Y-%m")