From 445c9ef99ba353f517f143a4a94cd36e3a78e7b5 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 8 Aug 2024 13:00:30 +0000 Subject: [PATCH] pre-commit auto-fixes --- tests/analysis/interfaces/test_coherent_interface.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/tests/analysis/interfaces/test_coherent_interface.py b/tests/analysis/interfaces/test_coherent_interface.py index b470ce7542c..5c47bcca48f 100644 --- a/tests/analysis/interfaces/test_coherent_interface.py +++ b/tests/analysis/interfaces/test_coherent_interface.py @@ -1,19 +1,21 @@ from __future__ import annotations +import unittest + from numpy.testing import assert_allclose +from pymatgen.analysis.interfaces import CoherentInterfaceBuilder, SubstrateAnalyzer from pymatgen.analysis.interfaces.coherent_interfaces import ( CoherentInterfaceBuilder, from_2d_to_3d, get_2d_transform, get_rot_3d_for_2d, ) +from pymatgen.core.lattice import Lattice +from pymatgen.core.structure import Structure from pymatgen.symmetry.analyzer import SpacegroupAnalyzer from pymatgen.util.testing import PymatgenTest -import unittest -from pymatgen.core.structure import Structure -from pymatgen.core.lattice import Lattice -from pymatgen.analysis.interfaces import CoherentInterfaceBuilder, SubstrateAnalyzer + class TestInterfaceBuilder(PymatgenTest): @classmethod