Skip to content

Commit

Permalink
mqtt: fix whitespace error
Browse files Browse the repository at this point in the history
Signed-off-by:  Eric Callahan <[email protected]>
  • Loading branch information
Arksine committed Apr 28, 2024
1 parent 48cb177 commit 0f2e3d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion moonraker/components/mqtt.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def reconnect(self, sock: Optional[socket.socket] = None):
if self._port <= 0:
raise ValueError('Invalid port number.')

if PAHO_MQTT_VERSION >=(2, 0):
if PAHO_MQTT_VERSION >= (2, 0):
return self._v2_reconnect(sock)
if PAHO_MQTT_VERSION < (1, 6):
# Paho Mqtt Version < 1.6.x
Expand Down

0 comments on commit 0f2e3d7

Please sign in to comment.