From cffa9d5c204f9ebd6634c4f7f4baf482f6acba2c Mon Sep 17 00:00:00 2001 From: selectron <53178126+susyexists@users.noreply.github.com> Date: Sat, 16 Mar 2024 17:57:26 -0400 Subject: [PATCH 1/2] Update __init__.py brillouinzone function made accessible directly from seekpath --- seekpath/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/seekpath/__init__.py b/seekpath/__init__.py index 3c1cc5e..318ea75 100644 --- a/seekpath/__init__.py +++ b/seekpath/__init__.py @@ -43,6 +43,7 @@ class SupercellWarning(UserWarning): ) from .hpkot import EdgeCaseWarning, SymmetryDetectionError +from .brillouinzone import brillouinzone __all__ = ( "get_path", @@ -52,4 +53,5 @@ class SupercellWarning(UserWarning): "EdgeCaseWarning", "SymmetryDetectionError", "SupercellWarning", + "brillouinzone" ) From 16d153090f52f37273d06442cf69c02920165dcd Mon Sep 17 00:00:00 2001 From: Giovanni Pizzi Date: Tue, 27 Aug 2024 09:54:38 +0200 Subject: [PATCH 2/2] Pre-commit fix --- seekpath/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/seekpath/__init__.py b/seekpath/__init__.py index 318ea75..ce2ab0d 100644 --- a/seekpath/__init__.py +++ b/seekpath/__init__.py @@ -53,5 +53,5 @@ class SupercellWarning(UserWarning): "EdgeCaseWarning", "SymmetryDetectionError", "SupercellWarning", - "brillouinzone" + "brillouinzone", )