Use __future__.annotations so type hints

work with Python < 2.9
This commit is contained in:
Justin Warren 2023-07-09 07:33:26 +10:00
parent a64875b78f
commit 8265639047
No known key found for this signature in database
3 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
"""A tool for managing federated Mastodon blocklists """A tool for managing federated Mastodon blocklists
""" """
from __future__ import annotations
import argparse import argparse
import toml import toml
import csv import csv

View File

@ -1,5 +1,6 @@
"""Parse various blocklist data formats """Parse various blocklist data formats
""" """
from __future__ import annotations
import csv import csv
import json import json
from typing import Iterable from typing import Iterable

View File

@ -1,5 +1,6 @@
""" Constant objects used by FediBlockHole """ Constant objects used by FediBlockHole
""" """
from __future__ import annotations
import enum import enum
from typing import NamedTuple, Optional, TypedDict from typing import NamedTuple, Optional, TypedDict
from dataclasses import dataclass from dataclasses import dataclass