dwavesystems / dwavesystems/dwave-cloud-client
from_config() ignores solver param
- Dominant language
- Python
- Stars
- 63
- Forks
- 44
- Avg merge
- 13h 45m
- Merged PRs (30d)
- 1
Description
```
>>> client = Client.from_config(solver={'num_qubits__gt': 8000})
>>> len(client.get_solvers())
9
>>> client = Client.from_config(solver="no_such_solver")
>>> len(client.get_solvers())
9
```
https://docs.ocean.dwavesys.com/en/stable/docs_cloud/reference/generated/dwave.cloud.client.Client.from_config.html#dwave.cloud.client.Client.from_config states that `from_config()` accepts "**kwargs (dict) – Client constructor options" and https://docs.ocean.dwavesys.com/en/stable/docs_cloud/reference/resources.html#dwave.cloud.client.Client states that it accepts `solver` param.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.