Skip to content
Open
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
4 changes: 2 additions & 2 deletions FlowCytometryTools/core/containers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import collections
import collections.abc
import inspect
import warnings
from itertools import cycle
Expand Down Expand Up @@ -135,7 +135,7 @@ def plot(
if gate_colors is None:
gate_colors = cycle(("b", "g", "r", "m", "c", "y"))

if not isinstance(gate_lw, collections.Iterable):
if not isinstance(gate_lw, collections.abc.Iterable):
gate_lw = [gate_lw]

gate_lw = cycle(gate_lw)
Expand Down