Skip to content

Commit

Permalink
Fix import of Union
Browse files Browse the repository at this point in the history
  • Loading branch information
graebm committed Oct 30, 2024
1 parent 5c01435 commit 4d3ff2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions awscrt/eventstream/rpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
import awscrt.exceptions
from awscrt.eventstream import Header
from awscrt.io import ClientBootstrap, SocketOptions, TlsConnectionOptions
from collections.abc import Callable, Union
from collections.abc import Callable
from concurrent.futures import Future
from enum import IntEnum
from functools import partial
from typing import Optional, Sequence
from typing import Optional, Sequence, Union

__all__ = [
'MessageType',
Expand Down

0 comments on commit 4d3ff2c

Please sign in to comment.