From 8b1068d8a50e41421dcc34ab72f3b9043ce4a77d Mon Sep 17 00:00:00 2001 From: stevenhua0320 Date: Sat, 22 Nov 2025 15:28:28 -0500 Subject: [PATCH] fix: revert import of files from other location. --- src/diffpy/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/diffpy/__init__.py b/src/diffpy/__init__.py index 04d8ace..4b8451c 100644 --- a/src/diffpy/__init__.py +++ b/src/diffpy/__init__.py @@ -14,3 +14,6 @@ # See LICENSE.rst for license information. # ############################################################################## +from pkgutil import extend_path + +__path__ = extend_path(__path__, __name__)