Skip to content

Commit

Permalink
fix precommit failures
Browse files Browse the repository at this point in the history
  • Loading branch information
terminalmage authored and Megan Wilhite committed Nov 4, 2022
1 parent a55239d commit f09a82e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
4 changes: 2 additions & 2 deletions salt/modules/boto_dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@
try:
# pylint: disable=unused-import
import boto
import boto3 # pylint: disable=unused-import
import boto.dynamodb2
import botocore

# pylint: enable=unused-import
from boto.dynamodb2.fields import (
Expand All @@ -69,8 +71,6 @@
)
from boto.dynamodb2.table import Table
from boto.exception import JSONResponseError
import botocore
import boto3 # pylint: disable=unused-import

logging.getLogger("boto").setLevel(logging.INFO)

Expand Down
8 changes: 0 additions & 8 deletions tests/unit/modules/test_boto_dynamodb.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,4 @@
# -*- coding: utf-8 -*-

# import Python Libs
from __future__ import absolute_import, print_function, unicode_literals

# Import Salt Libs
import salt.modules.boto_dynamodb as boto_dynamodb

# Import Salt Testing Libs
from tests.support.mixins import LoaderModuleMockMixin
from tests.support.mock import MagicMock, patch
from tests.support.unit import TestCase
Expand Down

0 comments on commit f09a82e

Please sign in to comment.