Skip to content

Commit 7daef8e

Browse files
committed
The Iterable ABC is now in collections.abc
1 parent 9ec3824 commit 7daef8e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

abydos/distance/_synoname.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
Synoname.
2020
"""
2121

22-
from collections import Iterable
22+
from collections.abc import Iterable
2323
from typing import (
2424
Any,
2525
Dict,

abydos/tokenizer/_q_grams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
QGrams multi-set class
2020
"""
2121

22-
from collections import Iterable
22+
from collections.abc import Iterable
2323
from typing import Callable, Iterable as TIterable, Optional, Union, cast
2424

2525
from ._tokenizer import _Tokenizer

abydos/tokenizer/_q_skipgrams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
Q-Skipgrams multi-set class
2020
"""
2121

22-
from collections import Iterable
22+
from collections.abc import Iterable
2323
from itertools import combinations
2424
from typing import Callable, Iterable as TIterable, Optional, Union, cast
2525

0 commit comments

Comments
 (0)