Skip to content

Commit f00c427

Browse files
committed
Fix mpcontribs error message
1 parent aedd2f8 commit f00c427

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

mp_api/client/client.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,8 @@ def __init__(
137137
except ImportError:
138138
self.contribs = None
139139
warnings.warn("mpcontribs-client not installed. "
140-
"Install the package o query MPContribs data, or construct pourbaix diagrams.")
140+
"Install the package to query MPContribs data, or construct pourbaix diagrams: "
141+
"'pip install mpcontribs-client'")
141142
except Exception as error:
142143
self.contribs = None
143144
warnings.warn(f"Problem loading MPContribs client: {error}")

0 commit comments

Comments
 (0)