Skip to content

Commit 18393da

Browse files
committed
fix ruff issue
1 parent 329e19f commit 18393da

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ethereum_test_base_types/conversions.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
from re import sub
44
from typing import Any, List, Optional, SupportsBytes, TypeAlias
55

6+
from pytest_plugins.logging import get_logger
7+
68
BytesConvertible: TypeAlias = str | bytes | SupportsBytes | List[int]
79
FixedSizeBytesConvertible: TypeAlias = str | bytes | SupportsBytes | List[int] | int
810
NumberConvertible: TypeAlias = str | bytes | SupportsBytes | int
911

10-
from pytest_plugins.logging import get_logger
1112

1213
logger = get_logger(__name__)
1314

0 commit comments

Comments
 (0)