Skip to content

Commit f7221ea

Browse files
committed
rmv __future__ as not needed after PEP 649
1 parent 771c4a3 commit f7221ea

8 files changed

Lines changed: 0 additions & 16 deletions

File tree

tools/postgres/purge_ttl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
44

5-
from __future__ import annotations
6-
75
import argparse
86
import logging
97
import os

tools/postgres/test_purge_ttl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
# License, v. 2.0. If a copy of the MPL was not distributed with this
33
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
44

5-
from __future__ import annotations
6-
75
from argparse import Namespace
86
from unittest.mock import MagicMock, Mock, patch
97

tools/spanner/count_expired_rows.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
# License, v. 2.0. If a copy of the MPL was not distributed with this
66
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
77

8-
from __future__ import annotations
9-
108
import sys
119
import logging
1210
from typing import Any

tools/spanner/purge_ttl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
# License, v. 2.0. If a copy of the MPL was not distributed with this
55
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
66

7-
from __future__ import annotations
8-
97
import argparse
108
import logging
119
import os

tools/spanner/test_count_expired_rows.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import logging
42
from unittest.mock import MagicMock
53

tools/spanner/test_purge_ttl.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import argparse
42
from types import SimpleNamespace
53
from unittest import mock

tools/spanner/test_utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import annotations
2-
31
import pytest
42

53
from tools.spanner.utils import ids_from_env

tools/spanner/utils.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
# License, v. 2.0. If a copy of the MPL was not distributed with this
55
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
66

7-
from __future__ import annotations
8-
97
import os
108
from enum import auto, Enum
119
from urllib import parse

0 commit comments

Comments
 (0)