From e8b8ebf0ea9bb92b2d1bcc32754af6e3ee4ab899 Mon Sep 17 00:00:00 2001 From: samerbam Date: Mon, 28 Aug 2023 11:47:22 -0400 Subject: [PATCH] scheduled time to 7am --- application/sync_calendar.py | 2 +- application/thermal_print.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/application/sync_calendar.py b/application/sync_calendar.py index 8814525..591b3e4 100644 --- a/application/sync_calendar.py +++ b/application/sync_calendar.py @@ -53,7 +53,7 @@ class SyncData(): self.get_new_creds() self.get_calendar_events() - schedule.every(1).day.at("07:55").do(self.get_calendar_events) + schedule.every(1).day.at("06:55").do(self.get_calendar_events) def get_new_creds(self, code=""): diff --git a/application/thermal_print.py b/application/thermal_print.py index 458d491..d32ab10 100644 --- a/application/thermal_print.py +++ b/application/thermal_print.py @@ -57,7 +57,7 @@ class ThermalPrinter(): self.p = Dummy() print("Try running `export DYLD_LIBRARY_PATH=/opt/homebrew/lib` if on m1 mac. source: https://github.com/pyusb/pyusb/issues/355#issuecomment-1062798576") # raise - schedule.every().day.at("11:46").do(self.print_default) + schedule.every().day.at("07:00").do(self.print_default) def print_custom(self, text=""): self.p.set(align="left")