diff --git a/bindings/python/pymongocrypt/synchronous/auto_encrypter.py b/bindings/python/pymongocrypt/synchronous/auto_encrypter.py index bcff252d1..4fc3f1093 100644 --- a/bindings/python/pymongocrypt/synchronous/auto_encrypter.py +++ b/bindings/python/pymongocrypt/synchronous/auto_encrypter.py @@ -12,8 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -from pymongocrypt.synchronous.state_machine import run_state_machine from pymongocrypt.mongocrypt import MongoCrypt +from pymongocrypt.synchronous.state_machine import run_state_machine class AutoEncrypter: diff --git a/bindings/python/pymongocrypt/synchronous/explicit_encrypter.py b/bindings/python/pymongocrypt/synchronous/explicit_encrypter.py index 591dd1efb..f9095c5f0 100644 --- a/bindings/python/pymongocrypt/synchronous/explicit_encrypter.py +++ b/bindings/python/pymongocrypt/synchronous/explicit_encrypter.py @@ -12,9 +12,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -from pymongocrypt.synchronous.state_machine import run_state_machine from pymongocrypt.mongocrypt import MongoCrypt from pymongocrypt.options import DataKeyOpts, ExplicitEncryptOpts +from pymongocrypt.synchronous.state_machine import run_state_machine class ExplicitEncrypter: diff --git a/bindings/python/pymongocrypt/synchronous/state_machine.py b/bindings/python/pymongocrypt/synchronous/state_machine.py index c9a3f0321..76fb4cd08 100644 --- a/bindings/python/pymongocrypt/synchronous/state_machine.py +++ b/bindings/python/pymongocrypt/synchronous/state_machine.py @@ -14,10 +14,10 @@ from abc import abstractmethod -from pymongocrypt.synchronous.credentials import _ask_for_kms_credentials from pymongocrypt.binding import lib from pymongocrypt.compat import ABC from pymongocrypt.errors import MongoCryptError +from pymongocrypt.synchronous.credentials import _ask_for_kms_credentials class MongoCryptCallback(ABC):