Archived
1
1
Fork 0

init: fix snake case linting

This commit is contained in:
Josh Lay 2023-05-05 18:52:45 -05:00
parent d34a824d77
commit bea5893d68
Signed by: jlay
GPG key ID: B265E45CACAD108A

View file

@ -20,7 +20,7 @@ def check_for_cards() -> bool:
def textual_run() -> None:
"""runs the AMD GPU Stats TUI; called only when in an interactive shell"""
if check_for_cards():
AMDGPUStats = app(watch_css=True)
AMDGPUStats.run()
amdgpu_stats_app = app(watch_css=True)
amdgpu_stats_app.run()
else:
sys.exit('Could not find an AMD GPU, exiting.')