Make some simplifications and keep PyFlakes happy.

This commit is contained in:
Sei Lisa 2017-08-23 11:55:37 +02:00
parent 3f59f5f16f
commit 2e09a3a986
2 changed files with 21 additions and 16 deletions

View file

@ -413,9 +413,11 @@ class parser(object):
else:
filename = match.group(2)[1:-1]
# TODO: what do we do with the filename?
filename # keep pyflakes happy
del filename
linenum = int(match.group(1))
linenum # keep pyflakes happy
# TODO: process line number
del linenum
else: