diff options
-rw-r--r-- | jimbrella/routine.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/jimbrella/routine.py b/jimbrella/routine.py index 471c498..a4ad638 100644 --- a/jimbrella/routine.py +++ b/jimbrella/routine.py @@ -128,10 +128,7 @@ def process_overdue(db: Database): if __name__ == "__main__": takeaway = JForm("takeaway", JFORM_TAKEAWAY_URL, JFORM_BOOKMARK_DIR) - # giveback = JForm( - # "giveback", JFORM_GIVEBACK_URL, JFORM_BOOKMARK_DIR - # ) - giveback = None + giveback = JForm("giveback", JFORM_GIVEBACK_URL, JFORM_BOOKMARK_DIR) db = Database(DATABASE_PATH) admin_log = AdminLog(ADMIN_LOG_PATH) sync_database(takeaway, giveback, db, admin_log) |