You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Generate a converted image url from the url passed in,
103
102
with the given width and height. aio_username and aio_key must be
104
103
set in secrets."""
105
104
try:
106
-
aio_username=secrets["aio_username"]
107
-
aio_key=secrets["aio_key"]
105
+
aio_username=self._secrets["aio_username"]
106
+
aio_key=self._secrets["aio_key"]
108
107
exceptKeyErroraserror:
109
108
raiseKeyError(
110
109
"\n\nOur image converter service require a login/password to rate-limit. Please register for a free adafruit.io account and place the user/key in your secrets file under 'aio_username' and 'aio_key'"# pylint: disable=line-too-long
0 commit comments