dut_profile: Remove unused variables

Signed-off-by: matthew <stidmatt@gmail.com>
This commit is contained in:
matthew
2021-12-03 08:23:22 -08:00
parent b92248de8c
commit cf2e196a47

View File

@@ -97,7 +97,6 @@ class DUTProfile(LFCliBase):
"dut": self.name,
"text": "[BLANK]"
}, self.debug)
notebytes = None
for line in self.notes:
notebytes = base64.b64encode(line.encode('ascii'))
if self.debug:
@@ -110,7 +109,6 @@ class DUTProfile(LFCliBase):
"text-64": notebytes.decode('ascii')
}, self.debug)
if (self.append is not None) and (len(self.append) > 0):
notebytes = None
for line in self.append:
notebytes = base64.b64encode(line.encode('ascii'))
if self.debug: