general: fix ignores after mypy version update

This commit is contained in:
karlicoss 2023-10-12 21:42:32 +01:00
parent 0512488241
commit 68289c1be3
4 changed files with 4 additions and 4 deletions

View file

@ -42,7 +42,7 @@ __all__ = [
# you could put _init_hook.py next to your private my/config
# that way you can configure logging/warnings/env variables on every HPI import
try:
import my._init_hook # type: ignore[import]
import my._init_hook # type: ignore[import-not-found]
except:
pass
##

View file

@ -86,7 +86,7 @@ def ensure_unique(
for i in it:
k = key(i)
v = value(i)
pv = key2value.get(k, None) # type: ignore
pv = key2value.get(k, None)
if pv is not None:
raise RuntimeError(f"Duplicate key: {k}. Previous value: {pv}, new value: {v}")
key2value[k] = v

View file

@ -230,7 +230,7 @@ def get_enlighten():
return Mock()
try:
import enlighten # type: ignore[import]
import enlighten # type: ignore[import-untyped]
except ModuleNotFoundError:
warnings.warn("You might want to 'pip install enlighten' for a nice progress bar")

View file

@ -13,7 +13,7 @@ from typing import Iterable
from .core import Res, get_files
from .core.common import isoparse, Json
import tcxparser # type: ignore[import]
import tcxparser # type: ignore[import-untyped]
from my.config import runnerup as config