Merge pull request #1852 from schriftgestalt/master

remove unused variable
This commit is contained in:
Cosimo Lupo 2020-03-12 14:11:05 +00:00 committed by GitHub
commit 59bcc0e897
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -417,7 +417,6 @@ class SimpleT2Decompiler(object):
self.numRegions = self.private.getNumRegions()
numBlends = self.pop()
numOps = numBlends * (self.numRegions + 1)
blendArgs = self.operandStack[-numOps:]
del self.operandStack[-(numOps-numBlends):] # Leave the default operands on the stack.
def op_vsindex(self, index):