fix mypy issues after mypy/libraries updates

This commit is contained in:
karlicoss 2023-11-10 22:28:28 +00:00
parent efa2e53c8a
commit 0ee43b88bf
6 changed files with 9 additions and 9 deletions

View file

@ -4,7 +4,7 @@ from pathlib import Path
# - it's imported from my.core.init (so we wan't to keep this file as small/reliable as possible, hence not common or something)
# - we still need this function in __main__, so has to be separate from my/core/init.py
def get_mycfg_dir() -> Path:
import appdirs
import appdirs # type: ignore[import-untyped]
import os
# not sure if that's necessary, i.e. could rely on PYTHONPATH instead
# on the other hand, by using MY_CONFIG we are guaranteed to load it from the desired path?