chore: 年度リストを昇順に変更

This commit is contained in:
admin
2026-06-07 22:01:37 +09:00
parent 4a500ff5e9
commit bcec6822e9
2 changed files with 2 additions and 2 deletions

View File

@@ -33,7 +33,7 @@ def get_fiscal_years():
end_fy = fiscal_end_year(max_date)
result = []
for fy in range(end_fy, start_fy - 1, -1):
for fy in range(start_fy, end_fy + 1):
reiwa = fy - REIWA_OFFSET
if reiwa > 0:
wareki = f"令和{reiwa}"