From 0ee995f175fb27d74b3ccb3a636d805746470749 Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Sun, 12 Jan 2025 07:31:29 -0800 Subject: [PATCH] Fixed F841 (unused-variable): Local variable `conffile` is assigned to but never used --- tools/readable_bash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/readable_bash.py b/tools/readable_bash.py index e4874138..fcf49fcf 100644 --- a/tools/readable_bash.py +++ b/tools/readable_bash.py @@ -222,7 +222,7 @@ class EditConf(Grammar): EOL ) def value(self): - conffile = self[1] + # conffile = self[1] options = [] eq = "=" if self[3] and "-s" in self[3].string: eq = " "