Skip to content

Commit

Permalink
fix: Remove j in loop as it was not referenced
Browse files Browse the repository at this point in the history
  • Loading branch information
RoyThomsonMonash authored Apr 11, 2024
1 parent 9d57d95 commit 3314828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion map2loop/thickness_calculator.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def compute(
"dip",
].to_numpy()
_thickness = []
for j, row in basal_contact.iterrows():
for _, row in basal_contact.iterrows():
# find the shortest line between the basal contact points and top contact points
short_line = shapely.shortest_line(row.geometry, top_contact_geometry)
self.lines.append(short_line)
Expand Down

0 comments on commit 3314828

Please sign in to comment.