fix mypy issues after mypy/libraries updates

This commit is contained in:
karlicoss 2023-11-10 22:28:28 +00:00
parent 996169aa29
commit 657ce08ac8
6 changed files with 9 additions and 9 deletions

View file

@ -7,7 +7,7 @@ import sys
from typing import Optional, Iterator, cast, TYPE_CHECKING, TypeVar, Callable, overload, Union, Any, Type
import warnings
import appdirs
import appdirs # type: ignore[import-untyped]
PathIsh = Union[str, Path] # avoid circular import from .common