Skip to content

Commit 7dd06cd

Browse files
committed
testing init changes
1 parent d5c65f5 commit 7dd06cd

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

cloudshell/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
from pkgutil import extend_path
2+
23
__path__ = extend_path(__path__, __name__)
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
from pkgutil import extend_path
2+
23
__path__ = extend_path(__path__, __name__)

cloudshell/sandbox_rest/sandbox_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import json
22
from dataclasses import asdict, dataclass
33
from typing import List
4+
45
import requests
56

67

@@ -433,6 +434,7 @@ def delete_execution(self, execution_id: str):
433434
# admin_api = SandboxRestApiSession(host="localhost", username="admin", password="admin", domain=TARGET_DOMAIN)
434435
admin_api = SandboxRestApiSession(host="localhost", username="admin", password="admin", domain=TARGET_DOMAIN)
435436
from cloudshell.api.cloudshell_api import CloudShellAPISession
437+
436438
with admin_api:
437439
all_sandboxes = admin_api.get_sandboxes()
438440
print(f"Sandbox count pulled by system admin: {len(all_sandboxes)}")

cloudshell/sandbox_rest/sandbox_controller.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
from timeit import default_timer
33
from typing import List
44

5+
from cloudshell.logger.qs_logger import get_qs_logger
56
from cloudshell.sandbox_rest.helpers.polling_helpers import (
67
SANDBOX_ACTIVE_STATES,
78
SANDBOX_SETUP_STATES,
@@ -12,7 +13,7 @@
1213
)
1314
from cloudshell.sandbox_rest.sandbox_api import InputParam, SandboxRestApiSession
1415
from cloudshell.sandbox_rest.sandbox_components import SandboxRestComponents
15-
from cloudshell.logger.qs_logger import get_qs_logger
16+
1617

1718
class SandboxSetupError(Exception):
1819
""" When sandbox has error during setup """

0 commit comments

Comments
 (0)