Skip to content

Commit 37bfb90

Browse files
committed
isort updates
1 parent 7cc4801 commit 37bfb90

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

aws_advanced_python_wrapper/dsql_iam_auth_plugin_factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
if TYPE_CHECKING:
2424
from aws_advanced_python_wrapper.plugin_service import PluginService
25-
from aws_advanced_python_wrapper.utils.properties import (Properties)
25+
from aws_advanced_python_wrapper.utils.properties import Properties
2626

2727

2828
class DsqlIamAuthPluginFactory(PluginFactory):

aws_advanced_python_wrapper/federated_plugin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
from aws_advanced_python_wrapper.utils.rds_token_utils import RDSTokenUtils
4848
from aws_advanced_python_wrapper.utils.rdsutils import RdsUtils
4949

50-
5150
logger = Logger(__name__)
5251

5352

aws_advanced_python_wrapper/iam_plugin.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
from typing import TYPE_CHECKING
1818

1919
from aws_advanced_python_wrapper.utils.iam_utils import IamAuthUtils, TokenInfo
20-
from aws_advanced_python_wrapper.utils.rdsutils import RdsUtils
2120
from aws_advanced_python_wrapper.utils.rds_token_utils import RDSTokenUtils
21+
from aws_advanced_python_wrapper.utils.rdsutils import RdsUtils
2222
from aws_advanced_python_wrapper.utils.region_utils import RegionUtils
2323

2424
if TYPE_CHECKING:
@@ -39,7 +39,6 @@
3939
from aws_advanced_python_wrapper.utils.properties import (Properties,
4040
WrapperProperties)
4141

42-
4342
logger = Logger(__name__)
4443

4544

aws_advanced_python_wrapper/okta_plugin.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
from aws_advanced_python_wrapper.utils.rds_token_utils import RDSTokenUtils
4545
from aws_advanced_python_wrapper.utils.rdsutils import RdsUtils
4646

47-
4847
logger = Logger(__name__)
4948

5049

aws_advanced_python_wrapper/utils/token_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@
1818
from typing import TYPE_CHECKING, Dict, Optional
1919

2020
if TYPE_CHECKING:
21-
from aws_advanced_python_wrapper.plugin_service import PluginService
2221
from boto3 import Session
2322

23+
from aws_advanced_python_wrapper.plugin_service import PluginService
24+
2425

2526
class TokenUtils(ABC):
2627
@abstractmethod

0 commit comments

Comments
 (0)