Skip to content

Fix a type annotation #622

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions awsiot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from awscrt import mqtt, mqtt5
from concurrent.futures import Future
import json
from typing import Any, Callable, Dict, Optional, Tuple, TypeVar
from typing import Any, Callable, Dict, Optional, Tuple, TypeVar, Union

__version__ = '1.0.0-dev'

Expand All @@ -32,7 +32,7 @@ class MqttServiceClient:
mqtt_connection: MQTT connection to use
"""

def __init__(self, mqtt_connection: mqtt.Connection or mqtt5.Client):
def __init__(self, mqtt_connection: Union[mqtt.Connection, mqtt5.Client]):
if isinstance(mqtt_connection, mqtt.Connection):
self._mqtt_connection = mqtt_connection # type: mqtt.Connection
elif isinstance(mqtt_connection, mqtt5.Client):
Expand Down