[docs] Update README.md

This commit is contained in:
Federico Capoano 2024-06-05 20:16:08 -04:00 committed by GitHub
parent c783a5938c
commit 67f39562ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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')),
...
]
```