Skip to content

Commit

Permalink
Fix manipulator column name
Browse files Browse the repository at this point in the history
  • Loading branch information
bjhardcastle committed May 2, 2024
1 parent f77ed6f commit 18ffa48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/npc_sessions/utils/newscale.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def get_newscale_coordinates(

# correct z values
z = df["z"]
for idx, device in enumerate(df["device"]):
for idx, device in enumerate(df["device_name"]):
if z_inverted:
z[idx] = get_z_travel(device) - z[idx]
df = df.with_columns(z)
Expand Down

0 comments on commit 18ffa48

Please sign in to comment.