From 8c33909a85b3686b17c728ec9ed244fc1e43127a Mon Sep 17 00:00:00 2001 From: Alex Ganose Date: Wed, 24 Mar 2021 18:33:15 -0700 Subject: [PATCH] Fix import order --- sumo/symmetry/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sumo/symmetry/__init__.py b/sumo/symmetry/__init__.py index 8b0477e3..0c6c9d53 100644 --- a/sumo/symmetry/__init__.py +++ b/sumo/symmetry/__init__.py @@ -6,9 +6,9 @@ Package containing functions for symmetry and k-point paths. """ +from sumo.symmetry.kpath import Kpath # isort:skip from sumo.symmetry.brad_crack_kpath import BradCrackKpath from sumo.symmetry.custom_kpath import CustomKpath -from sumo.symmetry.kpath import Kpath from sumo.symmetry.latimer_munro_kpath import LatimerKpath from sumo.symmetry.pymatgen_kpath import PymatgenKpath from sumo.symmetry.seekpath_kpath import SeekpathKpath