fix mypy, use more links to models

This commit is contained in:
Dima Gerasimov 2019-10-08 21:18:53 +01:00
parent af810eb325
commit a4e1deb458
4 changed files with 12 additions and 26 deletions

View file

@ -1,14 +1,5 @@
from functools import lru_cache
from .. import paths
@lru_cache()
def kobuddy_module():
from ..common import import_from
return import_from(paths.kobuddy.repo, 'kobuddy')
kobuddy = kobuddy_module()
from kobuddy import *
from my_configuration import paths
from my_configuration.repos.kobuddy.src.kobuddy import *
set_databases(paths.kobuddy.export_dir)