Skip to content

Commit 6c46fda

Browse files
authored
[Bug fix] Remove unnecessary print statements (#698)
* Allow override of quantum endpoint for data plane * [Bug fix] Remove unnecessary print statements
1 parent 305696b commit 6c46fda

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

azure-quantum/azure/quantum/_client/_client.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,8 @@ def __init__(
7171
) -> None:
7272
if endpoint is not None:
7373
_endpoint = endpoint
74-
print("Overrided endpoint: ", _endpoint)
7574
else:
7675
_endpoint = "https://{region}.{serviceBaseUrl}"
77-
print("Default endpoint: ", _endpoint)
7876
self._config = ServicesClientConfiguration(
7977
region=region, credential=credential, service_base_url=service_base_url, **kwargs
8078
)

0 commit comments

Comments
 (0)