kopia lustrzana https://github.com/Yakifo/amqtt
Fix tests
rodzic
43c100d8b0
commit
e200080a5e
|
@ -2,4 +2,4 @@
|
|||
#
|
||||
# See the file license.txt for copying permission.
|
||||
|
||||
from ._broker import Broker
|
||||
#from ._broker import Broker
|
|
@ -19,3 +19,9 @@ class CodecException(HBMQTTException):
|
|||
Exceptions thrown by packet encode/decode functions
|
||||
"""
|
||||
pass
|
||||
|
||||
class NoDataException(HBMQTTException):
|
||||
"""
|
||||
Exceptions thrown by packet encode/decode functions
|
||||
"""
|
||||
pass
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
import asyncio
|
||||
from hbmqtt.mqtt.packet import MQTTPacket, MQTTFixedHeader, PacketType, MQTTVariableHeader, MQTTPayload
|
||||
from hbmqtt.codecs import *
|
||||
from hbmqtt.errors import MQTTException, CodecException, HBMQTTException
|
||||
from hbmqtt.errors import MQTTException, CodecException, HBMQTTException, NoDataException
|
||||
from hbmqtt.session import Session
|
||||
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue