Skip to content

Commit 8ca6410

Browse files
Fix double quotes
1 parent 81a91c7 commit 8ca6410

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# djangorestframework-api-key
22

3+
API key permissions for the [Django REST Framework](https://www.django-rest-framework.org).
4+
35
<div>
46
<a href="https://travis-ci.org/florimondmanca/djangorestframework-api-key">
57
<img src="https://img.shields.io/travis/florimondmanca/djangorestframework-api-key.svg" alt="build status"/>
@@ -17,8 +19,6 @@
1719
<img src="https://img.shields.io/badge/drf-3.8+-7f2d2d.svg" alt="drf versions"/>
1820
</div>
1921

20-
API key permissions for the [Django REST Framework](https://www.django-rest-framework.org).
21-
2222
## Introduction
2323

2424
**`djangorestframework-api-key` is a powerful library for allowing server-side clients to safely use your API.** These clients are typically third-party backends and services (i.e. _machines_) which do not have a user account but still need to interact with your API in a secure way.
@@ -49,8 +49,8 @@ Add the app to your `INSTALLED_APPS`:
4949

5050
INSTALLED_APPS = [
5151
# ...
52-
'rest_framework',
53-
'rest_framework_api_key',
52+
"rest_framework",
53+
"rest_framework_api_key",
5454
]
5555
```
5656

0 commit comments

Comments
 (0)