From 1065e884ced6188298c2db12130ba8df906a203d Mon Sep 17 00:00:00 2001 From: David Hoese Date: Sat, 21 Sep 2024 10:00:35 -0500 Subject: [PATCH] Fix package config not being set properly in non-bundle environments --- polar2grid/utils/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/polar2grid/utils/config.py b/polar2grid/utils/config.py index a7e2c5bd..75d03901 100644 --- a/polar2grid/utils/config.py +++ b/polar2grid/utils/config.py @@ -34,7 +34,7 @@ def get_polar2grid_etc(): p2g_pkg_location = impr.files("polar2grid") if _is_editable_installation(): return str(p2g_pkg_location / "etc") - return p2g_pkg_location / "etc" / "polar2grid" + return p2g_pkg_location / "etc" def _is_editable_installation():