microsoft/qdk

Public

mirrored from https://github.com/microsoft/qdkAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
fedimser/test-utils-1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

source/pip/qsharp/utils/__init__.py

10lines · modecode

1# Copyright (c) Microsoft Corporation.
2# Licensed under the MIT License.
3
4"""Deprecated. Use :func:`qdk.qsharp.dump_operation` instead."""
5
6from qdk.qsharp import dump_operation # noqa: F401
7
8__all__ = [
9 "dump_operation",
10]
11