We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e61a3cb commit 42159c6Copy full SHA for 42159c6
src/alhambra_mixes/references.py
@@ -86,9 +86,9 @@ def plate_map(
86
"""
87
well_to_strand_name = {}
88
found_plate_name = False
89
- available_plate_names = []
+ available_plate_names = set()
90
for row in self.df.itertuples():
91
- available_plate_names.append(row.Plate)
+ available_plate_names.add(row.Plate)
92
if row.Plate == name: # type: ignore
93
found_plate_name = True
94
well = row.Well # type: ignore
0 commit comments