Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
change get_color() to get_edgecolor
  • Loading branch information
ludwigVonKoopa committed Oct 11, 2021
commit c30207b76afd3e8893a415461f65e06f9fcd8d56
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
matplotlib<3.5
matplotlib
netCDF4
numba>=0.53
numpy<1.21
Expand Down
2 changes: 1 addition & 1 deletion src/py_eddy_tracker/eddy_feature.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@ def display(
paths.append(i.vertices)
local_kwargs = kwargs.copy()
if "color" not in kwargs:
local_kwargs["color"] = collection.get_color()
local_kwargs["color"] = collection.get_edgecolor()
local_kwargs.pop("label", None)
elif j != 0:
local_kwargs.pop("label", None)
Expand Down