-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix 'asyncio_mqtt' has no attribute 'TLSParameters' error
- Loading branch information
1 parent
69321b0
commit 912dd73
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,14 @@ | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
from .error import MqttError, MqttCodeError | ||
from .client import Client, Will, ProtocolVersion | ||
from .client import Client, Will, ProtocolVersion, TLSParameters | ||
from .version import __version__ | ||
|
||
__all__ = ["MqttError", | ||
"MqttCodeError", | ||
"Client", | ||
"Will", | ||
"ProtocolVersion", | ||
"__version__"] | ||
__all__ = [ | ||
"MqttError", | ||
"MqttCodeError", | ||
"Client", | ||
"Will", | ||
"ProtocolVersion", | ||
"TLSParameters", | ||
"__version__", | ||
] |