Skip to content

Commit

Permalink
add clean_session argument
Browse files Browse the repository at this point in the history
  • Loading branch information
madnadyka authored and frederikaalund committed Aug 25, 2020
1 parent 55edc88 commit aca5c8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asyncio_mqtt/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class Client:
def __init__(self, hostname, port=1883, *, username=None, password=None,
logger=None, client_id=None, tls_context=None, protocol=None,
will=None, clean_session=True):
will=None, clean_session=None):
self._hostname = hostname
self._port = port
self._loop = asyncio.get_event_loop()
Expand Down

0 comments on commit aca5c8e

Please sign in to comment.