Thanks to @yehuda r it allowed me to dig deeper into the object documentation
The correct steps I needed to execute was
Open the Django Shell: run the following command in the terminal:
python manage.py shell
Delete All Queued Tasks: Execute the following commands to delete all queued tasks:
from django_q.models import OrmQ #Delete all queued tasks OrmQ.objects.all().delete()