Run blacken-docs in /topics/browsable-api/ page

This commit is contained in:
Marcelo Galigniana 2024-01-24 17:49:12 -03:00
parent 552a67acde
commit b70f7e2181

View File

@ -21,8 +21,8 @@ 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"))
]
```