From f929a552e8a9aa06d4389af804387b9c5fd5ffb9 Mon Sep 17 00:00:00 2001 From: Evgeniy Alekseev Date: Fri, 19 Mar 2021 01:02:56 +0300 Subject: [PATCH] drop unused ignore lines --- src/ahriman/web/views/index.py | 4 ++-- src/ahriman/web/web.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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