From 225247128539e82564b9fab91e227e00f13db201 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Thu, 9 Apr 2020 16:17:26 -0400 Subject: [PATCH] Black reformatting with Python 3 target. --- examples/aws_iot_shadows.py | 3 +-- examples/aws_iot_simpletest.py | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/examples/aws_iot_shadows.py b/examples/aws_iot_shadows.py index 119a14c..312c307 100644 --- a/examples/aws_iot_shadows.py +++ b/examples/aws_iot_shadows.py @@ -134,8 +134,7 @@ def message(client, topic, msg): MQTT.set_socket(socket, esp) # Set up a new MiniMQTT Client -client = MQTT.MQTT(broker=secrets["broker"], - client_id=secrets["client_id"]) +client = MQTT.MQTT(broker=secrets["broker"], client_id=secrets["client_id"]) # Initialize AWS IoT MQTT API Client aws_iot = MQTT_CLIENT(client) diff --git a/examples/aws_iot_simpletest.py b/examples/aws_iot_simpletest.py index f25a8c0..dce36d6 100644 --- a/examples/aws_iot_simpletest.py +++ b/examples/aws_iot_simpletest.py @@ -131,8 +131,7 @@ def message(client, topic, msg): MQTT.set_socket(socket, esp) # Set up a new MiniMQTT Client -client = MQTT.MQTT(broker=secrets["broker"], - client_id=secrets["client_id"]) +client = MQTT.MQTT(broker=secrets["broker"], client_id=secrets["client_id"]) # Initialize AWS IoT MQTT API Client aws_iot = MQTT_CLIENT(client)