Skip to content

Commit 3225d17

Browse files
committed
Silence flake8 warnings for commandline mode
1 parent d1ae1d6 commit 3225d17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/jinja/jinja-tester.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -477,11 +477,11 @@ def format_template(self):
477477

478478
if args.action == "format":
479479
formatted = format_template_content(template_content)
480-
print(formatted)
480+
print(formatted) # noqa: NP100
481481
elif args.action == "render":
482482
template = env.from_string(template_content)
483483
output = template.render(context)
484-
print(output)
484+
print(output) # noqa: NP100
485485

486486
else:
487487
# GUI mode

0 commit comments

Comments
 (0)