From 197947615241a0ce0dab7653ec0834f28d48fdc7 Mon Sep 17 00:00:00 2001 From: Aditya Bansal Date: Thu, 18 May 2017 01:40:22 +0530 Subject: [PATCH] pep8: Add compliance with rule E261 to zerver/views/integrations.py. --- zerver/views/integrations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zerver/views/integrations.py b/zerver/views/integrations.py index f1a62da750..b80dedba71 100644 --- a/zerver/views/integrations.py +++ b/zerver/views/integrations.py @@ -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()