Use _ prefix for ignored loop variable
This commit is contained in:
parent
1ca5133026
commit
5ab8beecef
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@ class InvoiceRenderView(LoginRequiredMixin, View):
|
|||
del tex
|
||||
|
||||
# The file has to be rendered twice
|
||||
for ignored in range(2):
|
||||
for _ignored in range(2):
|
||||
error = subprocess.Popen(
|
||||
["/usr/bin/xelatex", "-interaction=nonstopmode", "invoice-{}.tex".format(pk)],
|
||||
cwd=tmp_dir,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue