Skip to content

Commit

Permalink
Fix package config not being set properly in non-bundle environments
Browse files Browse the repository at this point in the history
  • Loading branch information
djhoese committed Sep 21, 2024
1 parent 6024d1d commit 1065e88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polar2grid/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 1065e88

Please sign in to comment.