From 15392ff4255e7becc05398f6cb8e5a8f83991c31 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Tue, 25 Apr 2023 01:23:03 -0500 Subject: [PATCH] "fix" linting; ignore length of util imports --- src/amdgpu_stats/interface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amdgpu_stats/interface.py b/src/amdgpu_stats/interface.py index e8750b4..19eb01a 100644 --- a/src/amdgpu_stats/interface.py +++ b/src/amdgpu_stats/interface.py @@ -23,7 +23,7 @@ from textual.reactive import reactive from textual.screen import Screen from textual.widgets import Header, Footer, Static, TextLog, Label -from .utils import CARD, SRC_FILES, TEMP_FILES, format_frequency, get_core_stats, get_fan_stats, get_power_stats, get_temp_stats +from .utils import CARD, SRC_FILES, TEMP_FILES, format_frequency, get_core_stats, get_fan_stats, get_power_stats, get_temp_stats # noqa class LogScreen(Screen):