Don't show init, just disk details
This commit is contained in:
parent
e1834d5179
commit
04cfdff2bf
1 changed files with 1 additions and 3 deletions
|
|
@ -10,12 +10,11 @@ import time
|
||||||
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
os.chdir(os.path.dirname(os.path.realpath(__file__)))
|
||||||
sys.path.append(os.getcwd())
|
sys.path.append(os.getcwd())
|
||||||
from functions.hw_diags import *
|
from functions.hw_diags import *
|
||||||
init_global_vars()
|
init_global_vars(silent=True)
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
try:
|
try:
|
||||||
# Prep
|
# Prep
|
||||||
clear_screen()
|
|
||||||
state = State()
|
state = State()
|
||||||
state.init()
|
state.init()
|
||||||
|
|
||||||
|
|
@ -26,7 +25,6 @@ if __name__ == '__main__':
|
||||||
disk = d
|
disk = d
|
||||||
|
|
||||||
# Show details
|
# Show details
|
||||||
clear_screen()
|
|
||||||
if disk:
|
if disk:
|
||||||
for line in disk.generate_attribute_report(timestamp=True):
|
for line in disk.generate_attribute_report(timestamp=True):
|
||||||
print(line)
|
print(line)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue