1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-06-25 21:50:55 +00:00

Fixed F841 (unused-variable): Local variable conffile is assigned to but never used

This commit is contained in:
Teal Dulcet 2025-06-18 04:32:13 -07:00
parent 89e4adcfb5
commit 560677085e

View File

@ -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 = " "