···115115116116def setup_cron_job():
117117 # Get the path to the virtual environment's python interpreter
118118- venv_python = os.path.join(BASE_DIR, "venv", "bin", "python3") # Update this if your venv is elsewhere
118118+ venv_python = os.path.join(BASE_DIR, ".venv", "bin", "python3") # Update this if your venv is elsewhere
119119120120 # Check if the cron job already exists
121121 cron = CronTab(user=True)