From d168f2ecd381ad530d14d8fc99cbeefca620a776 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Sch=C3=A4fer?= Date: Sat, 23 Jan 2021 14:13:43 +0100 Subject: [PATCH] Silence mypy strangeness --- snikket_web/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snikket_web/__init__.py b/snikket_web/__init__.py index 8068042..260ef81 100644 --- a/snikket_web/__init__.py +++ b/snikket_web/__init__.py @@ -155,7 +155,7 @@ def create_app() -> quart.Quart: pass else: import runpy - init_vars = runpy.run_path(env_init) + init_vars = runpy.run_path(env_init) # type:ignore for name, value in init_vars.items(): if not name: continue