remove unneeded comment

Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
Kevin Morris 2021-08-30 23:04:55 -07:00
parent 718ae1acba
commit e15a18e9fb
No known key found for this signature in database
GPG key ID: F7E46DED420788F3

View file

@ -111,6 +111,6 @@ async def package_base(request: Request, name: str) -> Response:
# Add our base information.
context = await make_single_context(request, pkgbase)
context["packages"] = pkgbase.packages.all() # Doesn't need to be here.
context["packages"] = pkgbase.packages.all()
return render_template(request, "pkgbase.html", context)