mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-01-24 00:04:16 +03:00
fixed missplaced semicolon
This commit is contained in:
parent
46e546ff23
commit
5164f5d797
|
@ -102,8 +102,8 @@ For example, multiple user throttle rates could be implemented by using the foll
|
|||
REST_FRAMEWORK = {
|
||||
'DEFAULT_THROTTLE_CLASSES': (
|
||||
'example.throttles.BurstRateThrottle',
|
||||
'example.throttles.SustainedRateThrottle',
|
||||
)
|
||||
'example.throttles.SustainedRateThrottle'
|
||||
),
|
||||
'DEFAULT_THROTTLE_RATES': {
|
||||
'burst': '60/min',
|
||||
'sustained': '1000/day'
|
||||
|
|
Loading…
Reference in New Issue
Block a user