move country_info into data submodule

This commit is contained in:
Sarah Hoffmann
2022-07-06 11:08:36 +02:00
parent bce93d60bd
commit cbbcbb1fd7
10 changed files with 18 additions and 16 deletions

View File

@@ -63,8 +63,9 @@ class SetupAll:
@staticmethod
def run(args):
from ..tools import database_import, refresh, postcodes, freeze, country_info
def run(args): # pylint: disable=too-many-statements
from ..data import country_info
from ..tools import database_import, refresh, postcodes, freeze
from ..indexer.indexer import Indexer
country_info.setup_country_config(args.config)