Skip to content

Commit 00f4721

Browse files
fix
1 parent 7f27ebd commit 00f4721

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/aws_encryption_sdk/materials_managers/mpl/materials.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
The aws-cryptographic-materials-library MUST be installed to use this module.
44
"""
5+
from typing import Dict, List, Set
56
# pylint should pass even if the MPL isn't installed
67
# noqa pylint: disable=import-error
78
from aws_cryptographic_materialproviders.mpl.models import (
@@ -10,7 +11,6 @@
1011
EncryptionMaterials as MPL_EncryptionMaterials,
1112
)
1213
# noqa pylint: enable=import-error
13-
from typing import Dict, List, Set
1414

1515
from aws_encryption_sdk.identifiers import Algorithm, AlgorithmSuite
1616
from aws_encryption_sdk.materials_managers import (

test/mpl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
"""Module testing components that use the MPL.
1414
1515
The aws-cryptographic-materials-library MUST be installed to run tests in this module.
16-
"""
16+
"""

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ commands = {[testenv:freeze-upstream-requirements-base]commands} test/upstream-r
144144
[testenv:test-upstream-requirements-base]
145145
sitepackages = False
146146
recreate = True
147-
commands = {[testenv:base-command]commands} test/ -m local --ignore --ignore test/mpl/
147+
commands = {[testenv:base-command]commands} test/ -m local --ignore test/mpl/
148148

149149
# Test frozen upstream requirements for Python 3.7
150150
[testenv:test-upstream-requirements-py37]

0 commit comments

Comments
 (0)