From 9a9e4a252ba2649b98e0017a24f168bf03bf3acd Mon Sep 17 00:00:00 2001 From: Matt Mackay Date: Wed, 13 Nov 2024 17:06:55 -0500 Subject: [PATCH] Revert "Add types to file generated by __test__.py" (#435) Reverts aspect-build/rules_py#428 Revert as it's causing a failure on CI for older versions of Python. --- py/private/pytest.py.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/private/pytest.py.tmpl b/py/private/pytest.py.tmpl index a72713dc..720b33d1 100644 --- a/py/private/pytest.py.tmpl +++ b/py/private/pytest.py.tmpl @@ -39,7 +39,7 @@ if __name__ == "__main__": if test_filter is not None: args.append(f"-k={test_filter}") - user_args: list[str] = [$$FLAGS$$] + user_args = [$$FLAGS$$] if len(user_args) > 0: args.extend(user_args)