Skip to content

Commit

Permalink
Placate mypy.
Browse files Browse the repository at this point in the history
  • Loading branch information
colons committed Oct 18, 2023
1 parent b853f33 commit d7c4337
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nkdsu/mixins.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import codecs
from os import path
from typing import Any
from typing import Any, Optional

from django.conf import settings
from django.views.generic import TemplateView
from markdown import markdown


class MarkdownView(TemplateView):
template_name = 'markdown.html'
template_name: Optional[str] = 'markdown.html'
filename: str
title: str

Expand Down

0 comments on commit d7c4337

Please sign in to comment.