From 8680507cb4c4b31d511cce9349cabf18e53a0ee8 Mon Sep 17 00:00:00 2001 From: Tyeth Gundry Date: Fri, 16 Aug 2024 15:06:30 +0000 Subject: [PATCH] Try and please sphynx --- adafruit_io/adafruit_io.py | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/adafruit_io/adafruit_io.py b/adafruit_io/adafruit_io.py index 6232b25..1aa54eb 100755 --- a/adafruit_io/adafruit_io.py +++ b/adafruit_io/adafruit_io.py @@ -868,20 +868,11 @@ def get_user_rate_info(self): Get rate limit and usage information for the current user. See https://io.adafruit.com/api/docs/#get-detailed-user-info - - Example output: - ``` - { - "data_rate_limit": 30, - "active_data_rate": 0, - "authentication_rate": 0, - "subscribe_authorization_rate": 0, - "publish_authorization_rate": 0, - "hourly_ban_rate": 0, - "mqtt_ban_error_message": null, - "active_sms_rate": 0 - } - ``` + + Example output: {"data_rate_limit": 30, "active_data_rate": 0, + "authentication_rate": 0, "subscribe_authorization_rate": 0, + "publish_authorization_rate": 0, "hourly_ban_rate": 0, + "mqtt_ban_error_message": null, "active_sms_rate": 0} """ path = self._compose_path("throttle") return self._get(path)