Skip to content

Commit

Permalink
Update configure.py
Browse files Browse the repository at this point in the history
Ignore inconsistent quotes on 2 specific lines for avoid unnecessary escapes
  • Loading branch information
jmichelp authored Apr 30, 2024
1 parent f58cf1c commit 79458e1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tools/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ def main(args):
)
status = {"cert": result[1], "pkey": result[2]}
responses.append(status)
# pylint: disable-next=W1405
info(f"Certificate: {'Present' if result[1] else 'Missing'}")
# pylint: disable-next=W1405
info(f"Private Key: {'Present' if result[2] else 'Missing'}")
if args.lock:
info("Device is now locked down!")
Expand Down

0 comments on commit 79458e1

Please sign in to comment.