From 67f39562ba574014df5a5fd33372c7f6545eea73 Mon Sep 17 00:00:00 2001 From: Federico Capoano Date: Wed, 5 Jun 2024 20:16:08 -0400 Subject: [PATCH] [docs] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ed39c07..639a86f 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ Add the notifications urls to your urlconf: ```python urlpatterns = [ ... - path('inbox/notifications/', include("notifications.urls", namespace='notifications')), + path('inbox/notifications/', include('notifications.urls', namespace='notifications')), ... ] ```