diff --git a/cfbs/commands.py b/cfbs/commands.py index 3d283f9e..34c2121e 100644 --- a/cfbs/commands.py +++ b/cfbs/commands.py @@ -34,12 +34,13 @@ pretty_check_file, pretty_file, CFBS_DEFAULT_SORTING_RULES, + TOP_LEVEL_KEYS, + MODULE_KEYS, ) from cfbs.build import ( init_out_folder, perform_build_steps, ) -from cfbs.cfbs_json import TOP_LEVEL_KEYS, MODULE_KEYS from cfbs.cfbs_config import CFBSConfig, CFBSReturnWithoutCommit from cfbs.validate import validate_config from cfbs.internal_file_management import ( diff --git a/cfbs/validate.py b/cfbs/validate.py index 0ce2f557..bde6a0b5 100644 --- a/cfbs/validate.py +++ b/cfbs/validate.py @@ -5,7 +5,7 @@ from collections import OrderedDict from cfbs.utils import is_a_commit_hash, user_error -from cfbs.cfbs_json import TOP_LEVEL_KEYS, MODULE_KEYS +from cfbs.pretty import TOP_LEVEL_KEYS, MODULE_KEYS from cfbs.cfbs_config import CFBSConfig from cfbs.build import AVAILABLE_BUILD_STEPS