Skip to content

Commit 16dde53

Browse files
committed
small bug fix again
1 parent 8c33244 commit 16dde53

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/acquisition/quidel/quidel.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,11 @@ def prepare_csv(self):
181181
self.need_update = need_update
182182

183183
def load_csv(self, dims=None):
184-
print(self.excel_history_path)
185184
if dims is None:
186185
dims = self.dims_to_keep
187186
parsed_dict = defaultdict(dict)
188187
for f in self.csv_list:
189-
print(f)
190-
if f in self.excel_history_path:
188+
if f in self.xlsx_history_list:
191189
continue
192190
rf = open(join(self.csv_path,f+'.csv'))
193191

0 commit comments

Comments
 (0)