Skip to content

Commit

Permalink
Correct path in water module to package_path
Browse files Browse the repository at this point in the history
  • Loading branch information
adrivinca authored and glatterf42 committed Oct 3, 2023
1 parent 37bb1c2 commit 24c8c58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions message_ix_models/model/water/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from message_ix_models import Context
from message_ix_models.model.structure import get_codes
from message_ix_models.util import load_private_data
from message_ix_models.util import load_package_data

log = logging.getLogger(__name__)

Expand Down Expand Up @@ -51,7 +51,7 @@ def read_config(context=None):
_parts = list(parts)
_parts[-1] += ".yaml"

context[key] = load_private_data(*_parts)
context[key] = load_package_data(*_parts)

return context

Expand Down

0 comments on commit 24c8c58

Please sign in to comment.