cleanup, mypy coverage & add common/error stubs

This commit is contained in:
Dima Gerasimov 2020-05-06 22:50:18 +01:00
parent 15444c7b1f
commit 6ecb953675
7 changed files with 37 additions and 33 deletions

View file

@ -95,14 +95,14 @@ def listify(fn=None, wrapper=list):
return listify_return(fn)
# TODO FIXME use in bluemaestro
# todo use in bluemaestro
# def dictify(fn=None, key=None, value=None):
# def md(it):
# return make_dict(it, key=key, value=value)
# return listify(fn=fn, wrapper=md)
from .kython.klogging import setup_logger, LazyLogger
from ..kython.klogging import setup_logger, LazyLogger
Paths = Union[Sequence[PathIsh], PathIsh]