From 7793730ebf4008f463f925cb8bbc72a585b4b93e Mon Sep 17 00:00:00 2001 From: Gil Forcada Codinachs Date: Mon, 1 Apr 2024 12:46:56 +0200 Subject: [PATCH] chore: black --- run_tests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/run_tests.py b/run_tests.py index 8e15e8b..057d356 100644 --- a/run_tests.py +++ b/run_tests.py @@ -187,6 +187,7 @@ def bla(list, /): """ check_code(source, 'A002') + @pytest.mark.skipif( sys.version_info < (3, 8), reason='This syntax is only valid in Python 3.8+', @@ -197,6 +198,7 @@ def test_lambda_posonly_argument_message(): """ check_code(source, 'A006') + def test_no_error(): source = """def bla(first):\n b = 4""" check_code(source)