Skip to content

Commit a1802ae

Browse files
committed
Fix typo with self
1 parent 65fe4d3 commit a1802ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Adafruit_IO/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def __init__(self, key, proxies=None, base_url='https://io.adafruit.com'):
4747
def _compose_url(self, path):
4848
return '{0}/{1}'.format(self.base_url, path)
4949

50-
def _handle_error(sefl, response):
50+
def _handle_error(self, response):
5151
# Handle explicit errors.
5252
if response.status_code == 429:
5353
raise ThrottlingError()

0 commit comments

Comments
 (0)