diff options
author | Matt Clay <matt@mystile.com> | 2023-10-05 00:11:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-05 00:11:17 +0200 |
commit | 9f899f94924fafeb330b1e8b18c970742da56e0d (patch) | |
tree | f0f250716e1b190097ac289b5657b5dfd058389a /.azure-pipelines | |
parent | ansible-test - Remove more Python 2.7 / 3.6 support (#81898) (diff) | |
download | ansible-9f899f94924fafeb330b1e8b18c970742da56e0d.tar.xz ansible-9f899f94924fafeb330b1e8b18c970742da56e0d.zip |
Require `from __future__ import annotations` (#81902)
Diffstat (limited to '.azure-pipelines')
-rwxr-xr-x | .azure-pipelines/scripts/combine-coverage.py | 3 | ||||
-rwxr-xr-x | .azure-pipelines/scripts/publish-codecov.py | 1 | ||||
-rwxr-xr-x | .azure-pipelines/scripts/time-command.py | 3 |
3 files changed, 3 insertions, 4 deletions
diff --git a/.azure-pipelines/scripts/combine-coverage.py b/.azure-pipelines/scripts/combine-coverage.py index 506ade6460..10d83580c5 100755 --- a/.azure-pipelines/scripts/combine-coverage.py +++ b/.azure-pipelines/scripts/combine-coverage.py @@ -7,8 +7,7 @@ Keep in mind that Azure Pipelines does not enforce unique job display names (onl It is up to pipeline authors to avoid name collisions when deviating from the recommended format. """ -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import os import re diff --git a/.azure-pipelines/scripts/publish-codecov.py b/.azure-pipelines/scripts/publish-codecov.py index f2bc4b84b3..41f30af76d 100755 --- a/.azure-pipelines/scripts/publish-codecov.py +++ b/.azure-pipelines/scripts/publish-codecov.py @@ -4,6 +4,7 @@ Upload code coverage reports to codecov.io. Multiple coverage files from multiple languages are accepted and aggregated after upload. Python coverage, as well as PowerShell and Python stubs can all be uploaded. """ +from __future__ import annotations import argparse import dataclasses diff --git a/.azure-pipelines/scripts/time-command.py b/.azure-pipelines/scripts/time-command.py index 5e8eb8d4c8..c6b505006e 100755 --- a/.azure-pipelines/scripts/time-command.py +++ b/.azure-pipelines/scripts/time-command.py @@ -1,8 +1,7 @@ #!/usr/bin/env python """Prepends a relative timestamp to each input line from stdin and writes it to stdout.""" -from __future__ import (absolute_import, division, print_function) -__metaclass__ = type +from __future__ import annotations import sys import time |