Fix comment syntax error in doc that fails pre-commit blacken-docs (#9225)

* Fix comment syntax in doc

* Pre-commit
This commit is contained in:
Kien Dang 2024-01-25 05:44:46 +08:00 committed by GitHub
parent 552a67acde
commit f85d8cb81a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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"))
]
```