Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion astrodendro/dendrogram.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
# - An ancestor is the largest structure that a structure is part of

import numpy as np
from collections import Iterable
try:
# Python <= 3.9
from collections import Iterable
except ImportError:
# Python > 3.9
from collections.abc import Iterable
import copy
import warnings

Expand Down