Run lint with default line length

This commit is contained in:
Jonah Lawrence 2022-10-07 16:13:24 +00:00 committed by GitHub
parent 1a8ddbdac6
commit 75dff5a731
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View file

@ -1 +1 @@
<svg height='50' width='200'><text x='0' y='25'>{{ text }}</text></svg>
<svg height='50' width='200'><text x='0' y='25'>{{ text }}</text></svg>

Before

Width:  |  Height:  |  Size: 71 B

After

Width:  |  Height:  |  Size: 72 B

Before After
Before After

View file

@ -120,7 +120,10 @@ def test_escaping_svg(app, client):
return flask.render_template("escaping_template.svg", text="<test>")
rv = client.get("/")
assert rv.data == b"<svg height='50' width='200'><text x='0' y='25'>&lt;test&gt;</text></svg>"
assert (
rv.data
== b"<svg height='50' width='200'><text x='0' y='25'>&lt;test&gt;</text></svg>"
)
def test_macros(app, req_ctx):