Skip to content

Commit

Permalink
Fix 'asyncio_mqtt' has no attribute 'TLSParameters' error
Browse files Browse the repository at this point in the history
  • Loading branch information
empicano authored and frederikaalund committed Oct 6, 2022
1 parent 69321b0 commit 912dd73
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions asyncio_mqtt/__init__.py
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__",
]

0 comments on commit 912dd73

Please sign in to comment.