chore(keyringctl): use python 3.9 iterable/iterator type imports

This commit is contained in:
Levente Polyak 2021-10-20 20:16:33 +02:00
parent 74f317344f
commit edbbc77086
No known key found for this signature in database
GPG Key ID: FC1B547C8D8172C8

View File

@ -4,6 +4,8 @@
from argparse import ArgumentParser
from collections import defaultdict
from collections.abc import Iterable
from collections.abc import Iterator
from contextlib import contextmanager
from itertools import chain
from logging import DEBUG
@ -25,8 +27,6 @@ from sys import stderr
from tempfile import TemporaryDirectory
from tempfile import mkdtemp
from typing import Dict
from typing import Iterable
from typing import Iterator
from typing import List
from typing import NewType
from typing import Optional