mirror of
https://github.com/Athemis/PyDSF.git
synced 2025-04-04 22:36:02 +00:00
Fix error while processing files
This commit is contained in:
parent
3aa45696dc
commit
750a9b7157
1 changed files with 1 additions and 1 deletions
2
pydsf.py
2
pydsf.py
|
@ -431,7 +431,7 @@ class Plate:
|
|||
if read > 0:
|
||||
try:
|
||||
temp[read - 1] = row[read]
|
||||
except IndexError:
|
||||
except (IndexError, ValueError):
|
||||
temp[read - 1] = 0.0
|
||||
elif read == 0:
|
||||
self.wells[i].name = row[read]
|
||||
|
|
Loading…
Add table
Reference in a new issue