Skip to content

Commit c66d230

Browse files
authored
apply updated isort processing (aws#143)
1 parent 67cf417 commit c66d230

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/aws_encryption_sdk/caches/local.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
import attr
2020
import six
2121

22-
from . import CryptoMaterialsCacheEntry
2322
from ..exceptions import CacheKeyError, NotSupportedError
23+
from . import CryptoMaterialsCacheEntry
2424
from .base import CryptoMaterialsCache
2525

2626
_OPPORTUNISTIC_EVICTION_ROUNDS = 10

src/aws_encryption_sdk/caches/null.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
# ANY KIND, either express or implied. See the License for the specific
1212
# language governing permissions and limitations under the License.
1313
"""Null cache: a cache which does not cache."""
14-
from . import CryptoMaterialsCacheEntry
1514
from ..exceptions import CacheKeyError
15+
from . import CryptoMaterialsCacheEntry
1616
from .base import CryptoMaterialsCache
1717

1818

src/aws_encryption_sdk/materials_managers/caching.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
import attr
1818
import six
1919

20-
from . import EncryptionMaterialsRequest
2120
from ..caches import (
2221
CryptoMaterialsCacheEntryHints,
2322
build_decryption_materials_cache_key,
@@ -28,6 +27,7 @@
2827
from ..internal.defaults import MAX_BYTES_PER_KEY, MAX_MESSAGES_PER_KEY
2928
from ..internal.str_ops import to_bytes
3029
from ..key_providers.base import MasterKeyProvider
30+
from . import EncryptionMaterialsRequest
3131
from .base import CryptoMaterialsManager
3232
from .default import DefaultCryptoMaterialsManager
3333

src/aws_encryption_sdk/materials_managers/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515

1616
import attr
1717

18-
from . import DecryptionMaterials, EncryptionMaterials
1918
from ..exceptions import MasterKeyProviderError, SerializationError
2019
from ..internal.crypto.authentication import Signer, Verifier
2120
from ..internal.crypto.elliptic_curve import generate_ecc_signing_key
2221
from ..internal.defaults import ALGORITHM, ENCODED_SIGNER_KEY
2322
from ..internal.str_ops import to_str
2423
from ..internal.utils import prepare_data_keys
2524
from ..key_providers.base import MasterKeyProvider
25+
from . import DecryptionMaterials, EncryptionMaterials
2626
from .base import CryptoMaterialsManager
2727

2828
_LOGGER = logging.getLogger(__name__)

0 commit comments

Comments
 (0)