From 5988f96b7a8a0bc506f8e4349eda1cea6ec3d3c6 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Thu, 9 Apr 2020 17:38:31 -0400 Subject: [PATCH] Black reformatting with Python 3 target. --- examples/gc_iot_core_simpletest.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/examples/gc_iot_core_simpletest.py b/examples/gc_iot_core_simpletest.py index 2e8833d..a1ec214 100644 --- a/examples/gc_iot_core_simpletest.py +++ b/examples/gc_iot_core_simpletest.py @@ -105,10 +105,12 @@ def message(client, topic, msg): # print("Your JWT is: ", jwt) # Set up a new MiniMQTT Client -client = MQTT.MQTT(broker=google_iot.broker, - username=google_iot.username, - password=secrets["jwt"], - client_id=google_iot.cid) +client = MQTT.MQTT( + broker=google_iot.broker, + username=google_iot.username, + password=secrets["jwt"], + client_id=google_iot.cid, +) # Initialize Google MQTT API Client google_mqtt = MQTT_API(client)