Flake8 Rules
This commit is contained in:
parent
2b2628c6df
commit
8d512d2edd
@ -356,7 +356,7 @@ class DocxTemplate(object):
|
|||||||
if anchor is not None:
|
if anchor is not None:
|
||||||
docPr = anchor.find(nsp+'docPr')
|
docPr = anchor.find(nsp+'docPr')
|
||||||
id = docPr.attrib['id']
|
id = docPr.attrib['id']
|
||||||
if not id in ids:
|
if id not in ids:
|
||||||
ids.append(id)
|
ids.append(id)
|
||||||
else:
|
else:
|
||||||
docPr.set('id', str(int(id)+amount))
|
docPr.set('id', str(int(id)+amount))
|
||||||
@ -368,14 +368,14 @@ class DocxTemplate(object):
|
|||||||
if anchor is not None:
|
if anchor is not None:
|
||||||
docPr = anchor.find(nsp+'docPr')
|
docPr = anchor.find(nsp+'docPr')
|
||||||
id = docPr.attrib['id']
|
id = docPr.attrib['id']
|
||||||
if not id in ids:
|
if id not in ids:
|
||||||
ids.append(id)
|
ids.append(id)
|
||||||
else:
|
else:
|
||||||
docPr.set('id', str(int(id)+amount))
|
docPr.set('id', str(int(id)+amount))
|
||||||
elif inline is not None:
|
elif inline is not None:
|
||||||
docPr = inline.find(nsp+'docPr')
|
docPr = inline.find(nsp+'docPr')
|
||||||
id = docPr.attrib['id']
|
id = docPr.attrib['id']
|
||||||
if not id in ids:
|
if id not in ids:
|
||||||
ids.append(id)
|
ids.append(id)
|
||||||
else:
|
else:
|
||||||
docPr.set('id', str(int(id)+amount))
|
docPr.set('id', str(int(id)+amount))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user