Skip to content

Commit

Permalink
RN: renamed variabel due to precommit
Browse files Browse the repository at this point in the history
  • Loading branch information
clemens-fricke committed Jan 28, 2025
1 parent 9a08b50 commit eb337c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gustaf/edges.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,8 @@ def dashed(self, spacing=None):

# chop vertices!
new_vs = []
for v0, v1, lins in zip(v0s, v1s, linspaces):
new_vs.append(np.linspace(v0, v1, lins))
for v0, v1, lin_space in zip(v0s, v1s, linspaces):
new_vs.append(np.linspace(v0, v1, lin_space))

# we need all chopped vertices.
# there might be duplicating vertices. you can use merge_vertices
Expand Down

0 comments on commit eb337c9

Please sign in to comment.