init: fix snake case linting
This commit is contained in:
parent
d34a824d77
commit
bea5893d68
1 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ def check_for_cards() -> bool:
|
||||||
def textual_run() -> None:
|
def textual_run() -> None:
|
||||||
"""runs the AMD GPU Stats TUI; called only when in an interactive shell"""
|
"""runs the AMD GPU Stats TUI; called only when in an interactive shell"""
|
||||||
if check_for_cards():
|
if check_for_cards():
|
||||||
AMDGPUStats = app(watch_css=True)
|
amdgpu_stats_app = app(watch_css=True)
|
||||||
AMDGPUStats.run()
|
amdgpu_stats_app.run()
|
||||||
else:
|
else:
|
||||||
sys.exit('Could not find an AMD GPU, exiting.')
|
sys.exit('Could not find an AMD GPU, exiting.')
|
||||||
|
|
Reference in a new issue