pre-commit again :|

This commit is contained in:
satayyeb 2024-01-05 17:15:22 +03:30 committed by GitHub
parent 1df67ec445
commit ff61a163f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,7 +22,7 @@ To quickly add authentication to the browesable api, add a routes named `"login"
```python
urlpatterns = [
...,
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework'))
url(r"^api-auth/", include("rest_framework.urls", namespace="rest_framework")),
]
```