8000 Fix pylint issues by tekktrik · Pull Request #90 · adafruit/Adafruit_CircuitPython_PortalBase · GitHub
[go: up one dir, main page]

Skip to content

Fix pylint issues #90

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions adafruit_portalbase/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -460,6 +460,7 @@ def get_io_feed(self, feed_key, detailed=False):
print("An error occured, retrying! 1 -", exception)
continue
break
return None

def get_io_group(self, group_key):
"""Return the Adafruit IO Group that matches the group key
Expand All @@ -476,6 +477,7 @@ def get_io_group(self, group_key):
print("An error occured, retrying! 1 -", exception)
continue
break
return None

def get_io_data(self, feed_key):
"""Return all values from Adafruit IO Feed Data that matches the feed key
Expand All @@ -492,6 +494,7 @@ def get_io_data(self, feed_key):
print("An error occured, retrying! 1 -", exception)
continue
break
return None

def fetch(self, url, *, headers=None, timeout=10):
"""Fetch data from the specified url and return a response object
Expand Down
0