Skip to content

Commit

Permalink
Merge pull request #11 from adafruit/black-update
Browse files Browse the repository at this point in the history
Black reformatting with Python 3 target.
  • Loading branch information
dhalbert authored Apr 10, 2020
2 parents 15d74aa + 5988f96 commit 0b1dc38
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions examples/gc_iot_core_simpletest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0b1dc38

Please sign in to comment.