Skip to content

Commit

Permalink
Merge pull request #96 from jagguli/master
Browse files Browse the repository at this point in the history
Fix add support for python > 3.10
  • Loading branch information
soravux authored Aug 12, 2022
2 parents 3c0357c + 31b1d23 commit c45bb94
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scoop/futures.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
import os
import sys
from inspect import ismethod
from collections import namedtuple, Iterable

from collections import namedtuple

try:
from collections import Iterable
except ImportError:
from collections.abc import Iterable
from functools import reduce
import itertools
import copy
Expand Down

0 comments on commit c45bb94

Please sign in to comment.