drop unused ignore lines

This commit is contained in:
2021-03-19 01:02:56 +03:00
parent 2c7ef3471e
commit f929a552e8
2 changed files with 3 additions and 3 deletions

View File

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
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

View File

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import aiohttp_jinja2 # type: ignore
import aiohttp_jinja2
import jinja2
import logging