Skip to content

Commit

Permalink
Fix circular imports and removed unused ones
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Johnson <[email protected]>
  • Loading branch information
t1m0thyj committed Oct 2, 2023
1 parent b4e6977 commit 9abf44f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/core/zowe/core_for_zowe_sdk/config_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import commentjson
import requests

from .constants import constants
from .credential_manager import CredentialManager
from .custom_warnings import ProfileNotFoundWarning, ProfileParsingWarning
from .exceptions import ProfileNotFound
Expand Down
6 changes: 3 additions & 3 deletions src/core/zowe/core_for_zowe_sdk/credential_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
import base64
import logging
import sys
import warnings
from typing import Optional

import commentjson
from zowe.core_for_zowe_sdk import constants
from zowe.core_for_zowe_sdk.exceptions import SecureProfileLoadFailed

from .constants import constants
from .exceptions import SecureProfileLoadFailed

HAS_KEYRING = True
try:
Expand Down

0 comments on commit 9abf44f

Please sign in to comment.