We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1510ef6 commit 89e6020Copy full SHA for 89e6020
DynamoDbEncryption/runtimes/python/src/aws_dbesdk_dynamodb/__init__.py
@@ -1,10 +1,15 @@
1
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
2
# SPDX-License-Identifier: Apache-2.0
3
4
+# Disable sorting imports; this order initializes code in the required order
5
+# (generated Dafny, then externs)
6
+# ruff: noqa: I
7
# Initialize generated Dafny
8
+from .internaldafny.generated import module_
9
+
10
# Initialize externs
11
+# noqa: F401, F403
12
from .internaldafny import extern
-from .internaldafny.generated import module_
13
14
"""
15
boto3 uses Python's decimal library to deserialize numbers retrieved by resources
0 commit comments