From 560677085e0d082ed61f85f0a7c66d80dc3403f7 Mon Sep 17 00:00:00 2001 From: Teal Dulcet Date: Wed, 18 Jun 2025 04:32:13 -0700 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 85bbaeb0..eef96595 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 = " "