Skip to content

Commit

Permalink
Merge pull request #130 from tirkarthi/fix-abc
Browse files Browse the repository at this point in the history
Import ABC from collections.abc for Python 3.10 compatibility.
  • Loading branch information
parrt authored Feb 24, 2021
2 parents 0e2caa3 + 716f472 commit 8cb485c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dtreeviz/models/shadow_decision_tree.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from abc import ABC, abstractmethod
from collections import Sequence
from collections.abc import Sequence
from numbers import Number
from typing import List, Tuple, Mapping

Expand Down

0 comments on commit 8cb485c

Please sign in to comment.