Skip to content

Commit c7d7360

Browse files
author
brentru
committed
remove prints
1 parent d57aa03 commit c7d7360

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ Introduction
1313
:target: https://travis-ci.com/adafruit/Adafruit_CircuitPython_AzureIoT
1414
:alt: Build Status
1515

16-
Access to Microsoft Azure IoT from a CircuitPython device.
16+
Access to Microsoft Azure IoT from a CircuitPython device. This library can perform device
17+
messaging services (cloud-to-device, device-to-cloud), device services, and job services.
1718

1819
Dependencies
1920
=============

adafruit_azureiot.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ def get_hub_message(self, device_id):
9999
if del_status == 204:
100100
return data[0]
101101
return -1
102-
103102

104103
# Device Messaging
105104
def send_device_message(self, device_id, message):
@@ -177,7 +176,6 @@ def _get(self, path, is_c2d=False):
177176
:param str path: Formatted Azure IOT Hub Path.
178177
:param bool is_c2d: Cloud-to-device get request.
179178
"""
180-
print(path)
181179
response = self._wifi.get(
182180
path,
183181
headers=self._azure_header)
@@ -223,5 +221,4 @@ def _put(self, path, payload=None):
223221
json=payload,
224222
headers=self._azure_header)
225223
self._parse_http_status(response.status_code, response.reason)
226-
print('Resp:', response.status_code, response.reason)
227224
return response.json()

0 commit comments

Comments
 (0)