Skip to content

Commit

Permalink
Lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Sep 11, 2023
1 parent a90fe06 commit 5d150ff
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion backend/scripts/2023_update_foundation_members.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@
for idx, info in enumerate(members):
old_id = info["id"].strip()
new_id = info["New Id"].strip() or old_id
path = info["path"][6 : -len(old_id)]
size_old_id = -len(old_id)
path = info["path"][6:size_old_id]
path = f"{path}{new_id}"
title = info["title"]
year = info["year"]
Expand Down

0 comments on commit 5d150ff

Please sign in to comment.