diff --git a/src/ahriman/web/views/index.py b/src/ahriman/web/views/index.py
index 73d3062a..ae969a0a 100644
--- a/src/ahriman/web/views/index.py
+++ b/src/ahriman/web/views/index.py
@@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
#
-import aiohttp_jinja2 # type: ignore
+import aiohttp_jinja2
from typing import Any, Dict
@@ -41,7 +41,7 @@ class IndexView(BaseView):
version - ahriman version, string, required
'''
- @aiohttp_jinja2.template("build-status.jinja2") # type: ignore
+ @aiohttp_jinja2.template("build-status.jinja2")
async def get(self) -> Dict[str, Any]:
'''
process get request. No parameters supported here
diff --git a/src/ahriman/web/web.py b/src/ahriman/web/web.py
index 69fa0a1e..354c92b9 100644
--- a/src/ahriman/web/web.py
+++ b/src/ahriman/web/web.py
@@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see .
#
-import aiohttp_jinja2 # type: ignore
+import aiohttp_jinja2
import jinja2
import logging