pep8: Add compliance with rule E261 to zerver/views/integrations.py.

This commit is contained in:
Aditya Bansal 2017-05-18 01:40:22 +05:30
parent fe3b42c8f8
commit 1979476152
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ class IntegrationView(ApiURLView):
def api_endpoint_docs(request):
# type: (HttpRequest) -> HttpResponse
context = {} # type: Dict[str, Any]
context = {} # type: Dict[str, Any]
add_api_uri_context(context, request)
raw_calls = open('templates/zerver/api_content.json', 'r').read()