bpo-33908: Remove two superfluous assignments (GH-7116)

Signed-off-by: 's avatarSrinivas Reddy Thatiparthy <thatiparthysreenivas@gmail.com>
üst 06e2029d
......@@ -644,7 +644,6 @@ class _BinaryPlistParser:
elif tokenH == 0x50: # ascii string
s = self._get_size(tokenL)
result = self._fp.read(s).decode('ascii')
result = result
elif tokenH == 0x60: # unicode string
s = self._get_size(tokenL)
......
......@@ -96,7 +96,6 @@ class ReDemo:
flags = 0
for var in self.vars:
flags = flags | var.get()
flags = flags
return flags
def recompile(self, event=None):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment