Skip to content

Commit

Permalink
[INFRA] LGTM recommendation: Unused local variable (#853)
Browse files Browse the repository at this point in the history
* [INFRA] LGTM recommendation: Unused local variable

The value assigned to local variable 'data' is never used.

* [INFRA] LGTM recommendation: Unused import

Import of 'macros' is not used.
  • Loading branch information
DimitriPapadopoulos authored Aug 25, 2021
1 parent f1f1e77 commit 8345d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdf_build_src/process_markdowns.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import numpy as np

sys.path.append("../tools/")
from schemacode import macros
from schemacode import macros # noqa (used in "eval" call later on)


def run_shell_cmd(command):
Expand Down 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 8345d50

Please sign in to comment.