mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 00:02:28 +00:00
used more specific exception specifier (KeyError)
This commit is contained in:
parent
1ca6ec52fd
commit
b80b0c7947
@ -49,7 +49,7 @@ class CentroidConversion(EmotionConversionPlugin):
|
||||
totalIntensities[dim] += intensity
|
||||
try:
|
||||
res[dim] += value * intensity
|
||||
except Exception:
|
||||
except KeyError:
|
||||
res[dim] = value * intensity
|
||||
|
||||
for dim,intensity in totalIntensities.items():
|
||||
|
Loading…
Reference in New Issue
Block a user