Skip to content

Commit 628a86f

Browse files
authored
Merge pull request #59 from arduino/examples_fix_lint
examples: Ignore unused key.
2 parents 82ce1f2 + 7f3a0d8 commit 628a86f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import arduino_iot_cloud.ussl as ssl
1515

1616
from secrets import DEVICE_ID
17-
from secrets import SECRET_KEY
17+
from secrets import SECRET_KEY # noqa
1818

1919
KEY_PATH = "pkcs11:token=arduino"
2020
CERT_PATH = "pkcs11:token=arduino"

examples/micropython.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from secrets import WIFI_SSID
1717
from secrets import WIFI_PASS
1818
from secrets import DEVICE_ID
19-
from secrets import SECRET_KEY
19+
from secrets import SECRET_KEY # noqa
2020

2121
KEY_PATH = "key.der"
2222
CERT_PATH = "cert.der"

0 commit comments

Comments
 (0)