From a9883d4a5ad341b66d98e50d3ab322e962980894 Mon Sep 17 00:00:00 2001 From: Radoslav Georgiev Date: Sun, 22 Oct 2023 17:17:24 +0300 Subject: [PATCH] Point to the correct example from the Django Styleguide Example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1f3c31e..4c3ae79 100644 --- a/README.md +++ b/README.md @@ -2450,7 +2450,7 @@ We use [Celery](http://www.celeryproject.org/) for the following general cases: We try to treat Celery as if it's just another interface to our core logic - meaning - **don't put business logic there.** -Lets look at an example of a **service** that sends emails (example taken from [`Django-Styleguide-Example`](https://github.com/HackSoftware/Django-Styleguide-Example)) +Lets look at an example of a **service** that sends emails (example taken from [`Django-Styleguide-Example`](https://github.com/HackSoftware/Django-Styleguide-Example/blob/master/styleguide_example/emails/tasks.py)) ```python from django.db import transaction