diff --git a/app.py b/app.py index 7ce737b..b6868f2 100644 --- a/app.py +++ b/app.py @@ -31,7 +31,7 @@ def removal(): print(f"[{int(time.time())}]: DELETED #{id}") sched = BackgroundScheduler(daemon=True) -sched.add_job(removal,'interval',seconds=5) +sched.add_job(removal,'interval',seconds=1) sched.start() @app.template_filter('expirein')