Skip to content

Commit

Permalink
fix: change default layer pen to black
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtanker committed Dec 10, 2023
1 parent 627b2bd commit b2c1e74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/antarctic_plots/profile.py
Expand Up @@ -643,7 +643,8 @@ def plot_profile(
if isinstance(color, list):
color = color[i]
if color is None:
color = v["color"]
# color = v["color"]
color = "black"

style = kwargs.get("layers_pen_style", None)
if isinstance(style, list):
Expand Down

0 comments on commit b2c1e74

Please sign in to comment.