core: add pandas utils

This commit is contained in:
Dima Gerasimov 2020-09-14 20:42:56 +01:00 committed by karlicoss
parent 63b848087d
commit 132db1dc0c
2 changed files with 45 additions and 2 deletions

View file

@ -126,9 +126,9 @@ def config_check(args):
return
rc = mres.returncode
if rc == 0:
info('mypy check: success')
info('mypy config check: success')
else:
error('mypy check: failed')
error('mypy config check: failed')
sys.stderr.write(indent(mres.stderr.decode('utf8')))
sys.stderr.write(indent(mres.stdout.decode('utf8')))