Skip to content

Commit

Permalink
fix(instructor): rename param name
Browse files Browse the repository at this point in the history
  • Loading branch information
breakthewall committed Mar 6, 2024
1 parent 2cd8509 commit 21950c2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion icfree/instructor/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def main():
destination_plate_paths=args.destination_plates,
split_upper_vol=args.split_upper_vol,
split_lower_vol=args.split_lower_vol,
src_plate_type_option=args.src_plate_type,
src_plate_type=args.src_plate_type,
logger=logger
)

Expand Down
1 change: 0 additions & 1 deletion icfree/instructor/instructor.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ def get_plate_index(
Returns:
int: The plate index for the given component.
"""
logger.info("Getting plate index for component...")
for i in range(len(plate_dfs)):
if component in plate_dfs[i].columns:
return i
Expand Down

0 comments on commit 21950c2

Please sign in to comment.