Skip to content

Commit

Permalink
Fix broken import of aiida.manage.configuration.Config
Browse files Browse the repository at this point in the history
A recent release of `aiida-core` removed the import of `Config` directly
from the module `aiida.manage.configuration` causing the tests to fail.
It should now be imported from `aiida.manage.configuration.config.Config`.
  • Loading branch information
sphuber committed Oct 29, 2024
1 parent 8b2d464 commit c19ccd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/cli/test_install.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import pathlib

import pytest
from aiida.manage.configuration import Config
from aiida.manage.configuration.config import Config
from aiida.orm import QueryBuilder
from aiida_pseudo.cli import cmd_install_family, cmd_install_pseudo_dojo, cmd_install_sssp, install
from aiida_pseudo.data.pseudo.upf import UpfData
Expand Down

0 comments on commit c19ccd0

Please sign in to comment.