···170170171171 if not job_exists:
172172 # Set up the cron job to run every hour (top of the hour)
173173- cron_command = f"{venv_python} {SCRIPT_PATH} # Avatar update script"
173173+ cron_command = f"{venv_python} {SCRIPT_PATH}"
174174 job = cron.new(command=cron_command, comment="Avatar update script")
175175 job.minute.on(0) # Run at the start of every hour
176176 cron.write()