Skip to content

Commit

Permalink
Fix changed function name
Browse files Browse the repository at this point in the history
  • Loading branch information
danielhuppmann committed Mar 4, 2024
1 parent b1d66a3 commit 5d65095
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Next release

- [#829](https://github.com/IAMconsortium/pyam/pull/829) Add a `pyam.iiasa.list_platforms()` function
- [#829](https://github.com/IAMconsortium/pyam/pull/829) Add a `pyam.iiasa.platforms()` function for a list of available platforms
- [#826](https://github.com/IAMconsortium/pyam/pull/826) Add `read_ixmp4()` function and extend integration test
- [#825](https://github.com/IAMconsortium/pyam/pull/825) Add support for Python 3.12
- [#824](https://github.com/IAMconsortium/pyam/pull/824) Update ixmp4 requirement to >=0.7.1
Expand Down
4 changes: 2 additions & 2 deletions pyam/iiasa.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@


def platforms() -> None:
"""Print all available ixmp4 platforms hosted by IIASA
"""Print a list of available ixmp4 platforms hosted by IIASA
See Also
--------
Expand Down Expand Up @@ -224,7 +224,7 @@ def valid_connections(self):
"""Return available resources (database API connections)"""
logger.warning(
"IIASA is migrating to a database infrastructure using the ixmp4 package."
"Use `pyam.iiasa.list_platforms()` to list available ixmp4 databases."
"Use `pyam.iiasa.platforms()` to list available ixmp4 databases."
)
return list(self._connection_map.keys())

Expand Down

0 comments on commit 5d65095

Please sign in to comment.