Skip to content

Commit 4d3ff2c

Browse files
committed
Fix import of Union
1 parent 5c01435 commit 4d3ff2c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

awscrt/eventstream/rpc.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
import awscrt.exceptions
1212
from awscrt.eventstream import Header
1313
from awscrt.io import ClientBootstrap, SocketOptions, TlsConnectionOptions
14-
from collections.abc import Callable, Union
14+
from collections.abc import Callable
1515
from concurrent.futures import Future
1616
from enum import IntEnum
1717
from functools import partial
18-
from typing import Optional, Sequence
18+
from typing import Optional, Sequence, Union
1919

2020
__all__ = [
2121
'MessageType',

0 commit comments

Comments
 (0)