mirror of
https://github.com/encode/django-rest-framework.git
synced 2025-01-24 00:04:16 +03:00
Parens around if clause
This commit is contained in:
parent
d920683237
commit
e13d2af137
|
@ -18,7 +18,7 @@ def api_view(http_method_names=None):
|
||||||
Decorator that converts a function-based view into an APIView subclass.
|
Decorator that converts a function-based view into an APIView subclass.
|
||||||
Takes a list of allowed methods for the view as an argument.
|
Takes a list of allowed methods for the view as an argument.
|
||||||
"""
|
"""
|
||||||
http_method_names = ['GET'] if http_method_names is None else http_method_names
|
http_method_names = ['GET'] if (http_method_names is None) else http_method_names
|
||||||
|
|
||||||
def decorator(func):
|
def decorator(func):
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ def detail_route(methods=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Used to mark a method on a ViewSet that should be routed for detail requests.
|
Used to mark a method on a ViewSet that should be routed for detail requests.
|
||||||
"""
|
"""
|
||||||
methods = ['get'] if methods is None else methods
|
methods = ['get'] if (methods is None) else methods
|
||||||
|
|
||||||
def decorator(func):
|
def decorator(func):
|
||||||
func.bind_to_methods = methods
|
func.bind_to_methods = methods
|
||||||
|
@ -126,7 +126,7 @@ def list_route(methods=None, **kwargs):
|
||||||
"""
|
"""
|
||||||
Used to mark a method on a ViewSet that should be routed for list requests.
|
Used to mark a method on a ViewSet that should be routed for list requests.
|
||||||
"""
|
"""
|
||||||
methods = ['get'] if methods is None else methods
|
methods = ['get'] if (methods is None) else methods
|
||||||
|
|
||||||
def decorator(func):
|
def decorator(func):
|
||||||
func.bind_to_methods = methods
|
func.bind_to_methods = methods
|
||||||
|
|
Loading…
Reference in New Issue
Block a user