We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05f6da6 commit 06fc805Copy full SHA for 06fc805
1 file changed
mpcontribs-client/mpcontribs/client/__init__.py
@@ -890,6 +890,7 @@ def __init__(
890
session (requests.Session): override session for client to use
891
"""
892
893
+ # ruff: disable[E501]
894
logger.warning(
895
"""The `mpcontribs-client` package has been deprecated in favor of the main Materials Project (MP) API client `mp-api`.
896
To use the MP Contribs client swith up-to-date features, please `pip install 'mp-api[contribs]'`:
@@ -900,6 +901,7 @@ def __init__(
900
901
mpr.contribs.query_contributions(...)
902
```"""
903
)
904
+ # ruff: enable[E501]
905
906
# NOTE bravado future doesn't work with concurrent.futures
907
# - Kong forwards consumer headers when api-key used for auth
0 commit comments