Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix get_universal_calculator AttributeError: 'SumCalculator' object has no attribute 'lower' #15

Merged
merged 4 commits into from
Dec 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
breaking rename matcalc/(util -> utils).py
  • Loading branch information
janosh committed Dec 12, 2023
commit df12641a3fb7d360061f6d263f1c567a33b1db59
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_util.py → tests/test_utils.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
import pytest
from ase.calculators.calculator import Calculator

from matcalc.util import UNIVERSAL_CALCULATORS, get_universal_calculator
from matcalc.utils import UNIVERSAL_CALCULATORS, get_universal_calculator


def test_get_universal_calculator() -> None: