From bea5893d687a96ac28a45e42f4ceb59d0ce70fb5 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Fri, 5 May 2023 18:52:45 -0500 Subject: [PATCH] init: fix snake case linting --- src/amdgpu_stats/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/amdgpu_stats/__init__.py b/src/amdgpu_stats/__init__.py index 1e19243..723e81f 100644 --- a/src/amdgpu_stats/__init__.py +++ b/src/amdgpu_stats/__init__.py @@ -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.')