From d34a824d77b5e03d10d62cfc055981244823285b Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Fri, 5 May 2023 18:49:47 -0500 Subject: [PATCH] add missing docstring to init --- src/amdgpu_stats/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amdgpu_stats/__init__.py b/src/amdgpu_stats/__init__.py index 38920e4..1e19243 100644 --- a/src/amdgpu_stats/__init__.py +++ b/src/amdgpu_stats/__init__.py @@ -18,6 +18,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()