Skip to content

Commit 2793576

Browse files
committed
Fix lint
1 parent 620e126 commit 2793576

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_utils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ def test_process_js_scenario():
4848

4949
def test_process_ai_extract_rules():
5050
"""It should format ai_extract_rules to a stringified JSON"""
51-
output = process_json_stringify_param({"product_name": "The name of the product", "price": "The price in USD"}, "ai_extract_rules")
51+
output = process_json_stringify_param(
52+
{"product_name": "The name of the product", "price": "The price in USD"}, "ai_extract_rules")
5253
assert output == '{"product_name": "The name of the product", "price": "The price in USD"}'
5354

5455

0 commit comments

Comments
 (0)