WizardKit/scripts/hw-diags.py
2019-11-10 14:47:56 -07:00

20 lines
346 B
Python
Executable file

#!/usr/bin/env python3
"""Wizard Kit: Hardware Diagnostics"""
# vim: sts=2 sw=2 ts=2
import wk
def main():
"""Run hardware diagnostics."""
state = wk.hw.diags.State()
wk.hw.diags.main_menu()
if __name__ == '__main__':
try:
main()
except SystemExit:
raise
except: #pylint: disable=bare-except
wk.std.major_exception()