azure-quantum 2.5.0.dev2__py3-none-any.whl → 3.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,28 +2,34 @@
2
2
  # --------------------------------------------------------------------------
3
3
  # Copyright (c) Microsoft Corporation. All rights reserved.
4
4
  # Licensed under the MIT License. See License.txt in the project root for license information.
5
- # Code generated by Microsoft (R) AutoRest Code Generator.
5
+ # Code generated by Microsoft (R) Python Code Generator.
6
6
  # Changes may cause incorrect behavior and will be lost if the code is regenerated.
7
7
  # --------------------------------------------------------------------------
8
+ # pylint: disable=wrong-import-position
8
9
 
9
- from ._operations import JobsOperations
10
- from ._operations import ProvidersOperations
11
- from ._operations import StorageOperations
12
- from ._operations import QuotasOperations
13
- from ._operations import SessionsOperations
14
- from ._operations import TopLevelItemsOperations
10
+ from typing import TYPE_CHECKING
11
+
12
+ if TYPE_CHECKING:
13
+ from ._patch import * # pylint: disable=unused-wildcard-import
14
+
15
+ from ._operations import JobsOperations # type: ignore
16
+ from ._operations import SessionsOperations # type: ignore
17
+ from ._operations import ProvidersOperations # type: ignore
18
+ from ._operations import StorageOperations # type: ignore
19
+ from ._operations import QuotasOperations # type: ignore
20
+ from ._operations import TopLevelItemsOperations # type: ignore
15
21
 
16
22
  from ._patch import __all__ as _patch_all
17
- from ._patch import * # pylint: disable=unused-wildcard-import
23
+ from ._patch import *
18
24
  from ._patch import patch_sdk as _patch_sdk
19
25
 
20
26
  __all__ = [
21
27
  "JobsOperations",
28
+ "SessionsOperations",
22
29
  "ProvidersOperations",
23
30
  "StorageOperations",
24
31
  "QuotasOperations",
25
- "SessionsOperations",
26
32
  "TopLevelItemsOperations",
27
33
  ]
28
- __all__.extend([p for p in _patch_all if p not in __all__])
34
+ __all__.extend([p for p in _patch_all if p not in __all__]) # pyright: ignore
29
35
  _patch_sdk()