1# coding=utf-8
2# --------------------------------------------------------------------------
3# Copyright (c) Microsoft Corporation. All rights reserved.
4# Licensed under the MIT License. See License.txt in the project root for license information.
5# Code generated by Microsoft (R) Python Code Generator.
6# Changes may cause incorrect behavior and will be lost if the code is regenerated.
7# --------------------------------------------------------------------------
8# pylint: disable=wrong-import-position
9
10from typing import TYPE_CHECKING
11
12if TYPE_CHECKING:
13 from ._patch import * # pylint: disable=unused-wildcard-import
14
15from ._client import DynatraceObservabilityMgmtClient # type: ignore
16from ._version import VERSION
17
18__version__ = VERSION
19
20try:
21 from ._patch import __all__ as _patch_all
22 from ._patch import *
23except ImportError:
24 _patch_all = []
25from ._patch import patch_sdk as _patch_sdk
26
27__all__ = [
28 "DynatraceObservabilityMgmtClient",
29]
30__all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
31
32_patch_sdk()