[pre-commit.ci lite] apply automatic fixes

This commit is contained in:
pre-commit-ci-lite[bot] 2025-05-16 09:28:03 +00:00 committed by GitHub
parent 6ff24afee8
commit c5d00407b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 14 additions and 12 deletions

View file

@ -1,5 +1,6 @@
import pytest
from flask import Flask, render_template_string
from flask import Flask
from flask import render_template_string
def test_template_filter_without_parentheses():
app = Flask(__name__)
@ -12,6 +13,7 @@ def test_template_filter_without_parentheses():
output = render_template_string("{{ 2 | double }}")
assert output == "4"
def test_template_filter_with_parentheses():
app = Flask(__name__)