Skip to content

Commit 2404795

Browse files
authored
Merge pull request #18 from adafruit/linting
Added pylint disable
2 parents 268d65f + 07a6bc6 commit 2404795

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/decode_priv_key.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
try:
3333
with open("rsa_private.pem", "rb") as file:
3434
private_key = file.read()
35-
except:
35+
except: # pylint: disable=bare-except
3636
print("No file named rsa_private.pem found in directory.")
3737
pk = rsa.PrivateKey.load_pkcs1(private_key)
3838

0 commit comments

Comments
 (0)