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 committed Sep 28, 2023
1 parent 421970e commit f143c9a
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)

Check warning on line 54 in message_ix_models/model/water/utils.py

View check run for this annotation

Codecov / codecov/patch

message_ix_models/model/water/utils.py#L54

Added line #L54 was not covered by tests

return context

Expand Down

0 comments on commit f143c9a

Please sign in to comment.