Lemon sadness

This commit is contained in:
Joakim Hellsén 2024-05-20 04:34:51 +02:00
commit bfe90aa69d
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9
52 changed files with 1564 additions and 2492 deletions

View file

@ -15,7 +15,7 @@ def add_global_context(request: HttpRequest) -> dict[str, str | int]:
Returns:
A dictionary with the global context.
"""
from .models import Feed # noqa: PLC0415
from feeds.models import Feed # noqa: PLC0415
amount_of_feeds: int = Feed.objects.count()
return {"amount_of_feeds": amount_of_feeds}