Skip to content

Commit 1f72891

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 2962001 commit 1f72891

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/mbedtls/tls.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def __init__(
9090
length: int,
9191
) -> None:
9292
def parse_version(
93-
v: Union[int, Tuple[int, int], TLSVersion]
93+
v: Union[int, Tuple[int, int], TLSVersion],
9494
) -> TLSVersion:
9595
if isinstance(v, TLSVersion):
9696
return v

tests/test_ringbuf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
@pytest.fixture
1515
def randomize_start(
16-
randbytes: Callable[[int], bytes]
16+
randbytes: Callable[[int], bytes],
1717
) -> Callable[[bytes], None]:
1818
def impl(buffer: RingBuffer) -> None:
1919
# Randomize start of the buffer.

0 commit comments

Comments
 (0)