Skip to content

Commit

Permalink
[fix] Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasCami committed Apr 22, 2024
1 parent a13c5e9 commit 16a1d3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion welly/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def plot_2d_curve(curve,
merged_paths = mpl.path.Path(vertices, codes)

# Make the 'fill' mask and clip the background image with it.
patch = mpl.patches.PathPatch(merged_paths, visible=False)
patch = PathPatch(merged_paths, visible=False)
ax.add_artist(patch)
im.set_clip_path(patch)
else:
Expand Down

0 comments on commit 16a1d3f

Please sign in to comment.