diff --git a/slpkg/repositories.py b/slpkg/repositories.py index 27e698d1..3bf05468 100644 --- a/slpkg/repositories.py +++ b/slpkg/repositories.py @@ -20,7 +20,7 @@ class Repositories: repos_config = {} repositories = {} - data_json: str = 'data.json' + json_file: str = 'data.json' last_update_json: Path = Path(repositories_path, 'last_update.json') default_repository: str = 'sbo' @@ -556,7 +556,7 @@ class Repositories: except (tomli.TOMLDecodeError, KeyError) as error: errors.raise_toml_error_message(error, repositories_toml_file) - # Dictionary of configurations of repositories. + # Dictionary configurations of repositories. repositories = { sbo_repo_name: { 'enable': sbo_repo,