Skip to content

Commit 6942d68

Browse files
authored
Minor format tweak to unrecognized engine error (#9809)
1 parent ad5c7ed commit 6942d68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xarray/backends/plugins.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ def get_backend(engine: str | type[BackendEntrypoint]) -> BackendEntrypoint:
200200
engines = list_engines()
201201
if engine not in engines:
202202
raise ValueError(
203-
f"unrecognized engine {engine} must be one of your download engines: {list(engines)}"
203+
f"unrecognized engine '{engine}' must be one of your download engines: {list(engines)}. "
204204
"To install additional dependencies, see:\n"
205205
"https://docs.xarray.dev/en/stable/user-guide/io.html \n"
206206
"https://docs.xarray.dev/en/stable/getting-started-guide/installing.html"

0 commit comments

Comments
 (0)