Skip to content

Commit c0e2acd

Browse files
committed
run 'make lint-py'
1 parent 18cf8f1 commit c0e2acd

File tree

12 files changed

+12
-0
lines changed

12 files changed

+12
-0
lines changed

packages/smithy-core/tests/unit/aio/test_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from typing import Self
66

77
import pytest
8+
89
from smithy_core.aio.types import (
910
AsyncBytesProvider,
1011
AsyncBytesReader,

packages/smithy-core/tests/unit/test_documents.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from typing import Any, Self, cast
66

77
import pytest
8+
89
from smithy_core.deserializers import ShapeDeserializer
910
from smithy_core.documents import (
1011
Document,

packages/smithy-core/tests/unit/test_identity.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
import pytest
66
from freezegun import freeze_time
7+
78
from smithy_core.identity import Identity
89

910

packages/smithy-core/tests/unit/test_retries.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
# SPDX-License-Identifier: Apache-2.0
33

44
import pytest
5+
56
from smithy_core.exceptions import SmithyRetryException
67
from smithy_core.interfaces.retries import RetryErrorInfo, RetryErrorType
78
from smithy_core.retries import ExponentialBackoffJitterType as EBJT

packages/smithy-core/tests/unit/test_schemas.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from dataclasses import replace
22

33
import pytest
4+
45
from smithy_core.exceptions import ExpectationNotMetException
56
from smithy_core.schemas import Schema
67
from smithy_core.shapes import ShapeID, ShapeType

packages/smithy-core/tests/unit/test_shapes.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import pytest
2+
23
from smithy_core.exceptions import ExpectationNotMetException, SmithyException
34
from smithy_core.shapes import ShapeID
45

packages/smithy-core/tests/unit/test_types.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
from datetime import datetime, timezone
66

77
import pytest
8+
89
from smithy_core.exceptions import ExpectationNotMetException
910
from smithy_core.types import JsonBlob, JsonString, TimestampFormat
1011

packages/smithy-core/tests/unit/test_uri.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
22
# SPDX-License-Identifier: Apache-2.0
33
import pytest
4+
45
from smithy_core import URI, HostType
56
from smithy_core.exceptions import SmithyException
67

packages/smithy-core/tests/unit/test_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
from unittest.mock import Mock
1212

1313
import pytest
14+
1415
from smithy_core.exceptions import ExpectationNotMetException
1516
from smithy_core.utils import (
1617
ensure_utc,

packages/smithy-json/tests/unit/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
from smithy_core.serializers import ShapeSerializer
2020
from smithy_core.shapes import ShapeID, ShapeType
2121
from smithy_core.traits import Trait
22+
2223
from smithy_json._private.traits import JSON_NAME, TIMESTAMP_FORMAT
2324

2425
SPARSE_TRAIT = Trait(id=ShapeID("smithy.api#sparse"))

0 commit comments

Comments
 (0)