Skip to content

Commit

Permalink
Merge pull request #50 from biolab/make-py310-compat
Browse files Browse the repository at this point in the history
Python310 compatibility
  • Loading branch information
PrimozGodec committed Jan 11, 2022
2 parents cb2a1d7 + f7e2151 commit 6001d98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion orangecontrib/associate/fpgrowth.py
Expand Up @@ -149,7 +149,8 @@
# TODO: Consider FPClose from "Efficiently using prefix-trees in mining frequent itemsets"
# TODO: Consider ExAnte: Anticipated data reduction in constrained pattern mining

from collections import defaultdict, Iterator
from collections import defaultdict
from collections.abc import Iterator
from itertools import combinations, chain
from functools import reduce

Expand Down

0 comments on commit 6001d98

Please sign in to comment.