diff --git a/codecov/badge.py b/codecov/badge.py index 4ad7883..151ab7f 100644 --- a/codecov/badge.py +++ b/codecov/badge.py @@ -3,8 +3,6 @@ by shields.io """ -from __future__ import annotations - import decimal import urllib.parse diff --git a/codecov/coverage/base.py b/codecov/coverage/base.py index b48ac3c..1e2f4cc 100644 --- a/codecov/coverage/base.py +++ b/codecov/coverage/base.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import dataclasses import datetime import decimal diff --git a/codecov/coverage/pytest.py b/codecov/coverage/pytest.py index dbd18f1..f134b84 100644 --- a/codecov/coverage/pytest.py +++ b/codecov/coverage/pytest.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import datetime import pathlib diff --git a/codecov/diff_grouper.py b/codecov/diff_grouper.py index 62bbff5..f886da8 100644 --- a/codecov/diff_grouper.py +++ b/codecov/diff_grouper.py @@ -1,5 +1,3 @@ -from __future__ import annotations - from collections.abc import Iterable from codecov import groups diff --git a/codecov/groups.py b/codecov/groups.py index f502646..0f0e04c 100644 --- a/codecov/groups.py +++ b/codecov/groups.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import base64 import dataclasses import functools diff --git a/codecov/template.py b/codecov/template.py index 663cd5a..010a055 100644 --- a/codecov/template.py +++ b/codecov/template.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import dataclasses import decimal import functools diff --git a/tests/conftest.py b/tests/conftest.py index a00be91..aab876c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,6 +1,6 @@ # pylint: disable=redefined-outer-name # mypy: disable-error-code="operator, union-attr" -from __future__ import annotations + import datetime import decimal diff --git a/tests/coverage/test_base.py b/tests/coverage/test_base.py index ae2a55e..5f949b7 100644 --- a/tests/coverage/test_base.py +++ b/tests/coverage/test_base.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import decimal import json import pathlib diff --git a/tests/coverage/test_pytest.py b/tests/coverage/test_pytest.py index 456d7c5..01834e7 100644 --- a/tests/coverage/test_pytest.py +++ b/tests/coverage/test_pytest.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import datetime import pathlib diff --git a/tests/test_badge.py b/tests/test_badge.py index d61c9f4..c3a3c69 100644 --- a/tests/test_badge.py +++ b/tests/test_badge.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import decimal import pytest diff --git a/tests/test_config.py b/tests/test_config.py index 23f52eb..3fcb3ef 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import decimal import pathlib import secrets diff --git a/tests/test_diff_grouper.py b/tests/test_diff_grouper.py index 7a0b373..c6777a4 100644 --- a/tests/test_diff_grouper.py +++ b/tests/test_diff_grouper.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import pathlib from codecov import diff_grouper, groups diff --git a/tests/test_github.py b/tests/test_github.py index 0d32ed9..9427f7f 100644 --- a/tests/test_github.py +++ b/tests/test_github.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import base64 import json import pathlib diff --git a/tests/test_github_client.py b/tests/test_github_client.py index fb7dbf9..67b69a4 100644 --- a/tests/test_github_client.py +++ b/tests/test_github_client.py @@ -1,5 +1,3 @@ -from __future__ import annotations - import secrets from unittest.mock import patch