+1
-1
src/main.py
+1
-1
src/main.py
···
170
170
171
171
if not job_exists:
172
172
# Set up the cron job to run every hour (top of the hour)
173
-
cron_command = f"{venv_python} {SCRIPT_PATH} # Avatar update script"
173
+
cron_command = f"{venv_python} {SCRIPT_PATH}"
174
174
job = cron.new(command=cron_command, comment="Avatar update script")
175
175
job.minute.on(0) # Run at the start of every hour
176
176
cron.write()