Fix random Mypy errors
This commit is contained in:
parent
2ff314ecc8
commit
f45864c786
7 changed files with 7 additions and 19 deletions
|
|
@ -85,7 +85,7 @@ def profile_view(request: HttpRequest) -> HttpResponse:
|
|||
Returns:
|
||||
HttpResponse: Rendered profile template.
|
||||
"""
|
||||
subscriptions = NotificationSubscription.objects.filter(user=request.user)
|
||||
subscriptions = NotificationSubscription.objects.filter(user=request.user) # type: ignore[misc]
|
||||
return render(
|
||||
request,
|
||||
"accounts/profile.html",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue