aboutsummaryrefslogtreecommitdiffstats
path: root/pydis_site/apps/home/views
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2019-09-06 16:38:46 -0400
committerGravatar GitHub <[email protected]>2019-09-06 16:38:46 -0400
commit2ac3626d25ad1a02b7d4c09c6ee4fdcdcc1f6079 (patch)
tree616f6e5da922a45465b5fba4f5e3945861e61f29 /pydis_site/apps/home/views
parentMerge pull request #238 from python-discord/django-deleted-messages-frontend (diff)
parentFix misconfigured flake8 so docstrings are properly linted (diff)
Merge pull request #241 from python-discord/fix-flake8-docstrings
Fix misconfigured flake8 so docstrings are properly linted
Diffstat (limited to 'pydis_site/apps/home/views')
-rw-r--r--pydis_site/apps/home/views/home.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_site/apps/home/views/home.py b/pydis_site/apps/home/views/home.py
index 03873a72..63f25c15 100644
--- a/pydis_site/apps/home/views/home.py
+++ b/pydis_site/apps/home/views/home.py
@@ -106,6 +106,6 @@ class HomeView(View):
return database_repositories
def get(self, request: WSGIRequest) -> HttpResponse:
- """Collect repo data and render the homepage view"""
+ """Collect repo data and render the homepage view."""
repo_data = self._get_repo_data()
return render(request, "home/index.html", {"repo_data": repo_data})