Skip to content

Commit abdce68

Browse files
committed
pylint
1 parent 90971a9 commit abdce68

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/endtoend/sql_functions/sql_functions_stein/function_app.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def sql_input(req: func.HttpRequest, products: func.SqlRowList) \
2626

2727
@app.route(route="sql_input2/{productid}")
2828
@app.sql_input(arg_name="products",
29-
command_text="SELECT * FROM Products2 WHERE ProductId = @ProductId",
30-
command_type="Text",
31-
parameters="@ProductId={productid}",
32-
connection_string_setting="AzureWebJobsSqlConnectionString")
29+
command_text="SELECT * FROM Products2 WHERE ProductId = @ProductId",
30+
command_type="Text",
31+
parameters="@ProductId={productid}",
32+
connection_string_setting="AzureWebJobsSqlConnectionString")
3333
def sql_input2(req: func.HttpRequest, products: func.SqlRowList) -> func.HttpResponse:
3434
rows = list(map(lambda r: json.loads(r.to_json()), products))
3535

0 commit comments

Comments
 (0)