1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2025-01-24 12:47:05 +00:00

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

This commit is contained in:
Teal Dulcet 2025-01-12 07:31:29 -08:00
parent 2021c6d501
commit 0ee995f175

View File

@ -222,7 +222,7 @@ class EditConf(Grammar):
EOL EOL
) )
def value(self): def value(self):
conffile = self[1] # conffile = self[1]
options = [] options = []
eq = "=" eq = "="
if self[3] and "-s" in self[3].string: eq = " " if self[3] and "-s" in self[3].string: eq = " "