X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/6ba615092e0b323072058f0a90bb7ab301957b7f..c90cf42d7ce0e529af677e082ab651180339084b:/tests/function.py diff --git a/tests/function.py b/tests/function.py index 29de408..7fa6866 100644 --- a/tests/function.py +++ b/tests/function.py @@ -37,7 +37,7 @@ def example(session): models.Customer.account_id == account_id, models.Customer.email == email_address, ).order_by( - models.Customer.id.asc(), + models.Customer.id.asc() ).all() def long_lines(): if True: @@ -129,7 +129,7 @@ def example(session): result = session.query(models.Customer.id).filter( models.Customer.account_id == account_id, models.Customer.email == email_address ).order_by( - models.Customer.id.asc(), + models.Customer.id.asc() ).all()