mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
fix pycodestyle
This commit is contained in:
parent
adfe5c123c
commit
1c0069e95e
@ -13,6 +13,8 @@ class ApiVersionMiddleware:
|
|||||||
if request.user.is_authenticated:
|
if request.user.is_authenticated:
|
||||||
versions = settings.REST_FRAMEWORK['ALLOWED_VERSIONS']
|
versions = settings.REST_FRAMEWORK['ALLOWED_VERSIONS']
|
||||||
response['X-Api-Version'] = versions[len(versions)-1]
|
response['X-Api-Version'] = versions[len(versions)-1]
|
||||||
response['X-Version'] = ".".join([str(_) for _ in version.__version__])
|
response['X-Version'] = ".".join(
|
||||||
|
[str(_) for _ in version.__version__]
|
||||||
|
)
|
||||||
|
|
||||||
return response
|
return response
|
||||||
|
Loading…
x
Reference in New Issue
Block a user