Skip to content

Commit

Permalink
[FIX]i LGTM recommendation: Unused local variable
Browse files Browse the repository at this point in the history
The value assigned to local variable 'data' is never used.
  • Loading branch information
DimitriPapadopoulos committed Aug 18, 2021
1 parent 28ad463 commit 9f54004
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pdf_build_src/process_markdowns.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def edit_titlepage():
"\\end{titlepage}")

with open('cover.tex', 'w') as file:
data = file.writelines(data)
file.writelines(data)


def process_macros(duplicated_src_dir_path):
Expand Down

0 comments on commit 9f54004

Please sign in to comment.