1
0
Fork 0
forked from Fuji/Fuji

Fix import statement and add timetable retrieval using current month's dates

This commit is contained in:
Maarceeli 2025-04-16 10:21:27 +02:00
parent ceea7a5262
commit b75bb64242

View file

@ -6,7 +6,7 @@ import keyring
import threading
import configparser
import flet as ft
from i18n import *
from i18n import _
from utils import *
from pages.home import *
from pages.exams import *
@ -61,6 +61,11 @@ def sync(page: ft.Page):
create_notes_database(notes_list=notes)
start, end = get_current_month_dates()
interface.get_timetable(from_=start, to=end)
def change_page(route):
routes = {
"/": HomePage(),