mirror of
https://github.com/Athemis/PyDSF.git
synced 2025-04-05 14:46:03 +00:00
Be more precise in which Exception to catch
This commit is contained in:
parent
fb75cb0864
commit
3aa45696dc
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 Exception:
|
||||
except IndexError:
|
||||
temp[read - 1] = 0.0
|
||||
elif read == 0:
|
||||
self.wells[i].name = row[read]
|
||||
|
|
Loading…
Add table
Reference in a new issue