Skip to content

Commit 4d8e49a

Browse files
committed
Fix whitespace in LoginView context method
Removed unnecessary trailing whitespace in the get_context_data method of LoginView
1 parent 58262fe commit 4d8e49a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ansible_ai_connect/main/views.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,11 @@ def get_context_data(self, **kwargs):
5454
next_url = self.request.GET.get("next")
5555
context["next"] = next_url
5656
context["deployment_mode"] = settings.DEPLOYMENT_MODE
57-
57+
5858
project_name = settings.ANSIBLE_AI_PROJECT_NAME
5959
if next_url and next_url.startswith("/chatbot"):
6060
project_name = project_name.replace(" with IBM watsonx Code Assistant", "")
61-
61+
6262
context["project_name"] = project_name
6363
context["aap_api_provider_name"] = settings.AAP_API_PROVIDER_NAME
6464
context["documentation_url"] = settings.COMMERCIAL_DOCUMENTATION_URL

0 commit comments

Comments
 (0)