From 75dff5a73190d80118f442da0d71be994862b67b Mon Sep 17 00:00:00 2001 From: Jonah Lawrence Date: Fri, 7 Oct 2022 16:13:24 +0000 Subject: [PATCH] Run lint with default line length --- tests/templates/escaping_template.svg | 2 +- tests/test_templating.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/templates/escaping_template.svg b/tests/templates/escaping_template.svg index 280402dd..514d2972 100644 --- a/tests/templates/escaping_template.svg +++ b/tests/templates/escaping_template.svg @@ -1 +1 @@ -{{ text }} \ No newline at end of file +{{ text }} diff --git a/tests/test_templating.py b/tests/test_templating.py index 3acdbc2e..890098ce 100644 --- a/tests/test_templating.py +++ b/tests/test_templating.py @@ -120,7 +120,10 @@ def test_escaping_svg(app, client): return flask.render_template("escaping_template.svg", text="") rv = client.get("/") - assert rv.data == b"<test>" + assert ( + rv.data + == b"<test>" + ) def test_macros(app, req_ctx):