mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-22 16:12:29 +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
|
totalIntensities[dim] += intensity
|
||||||
try:
|
try:
|
||||||
res[dim] += value * intensity
|
res[dim] += value * intensity
|
||||||
except Exception:
|
except KeyError:
|
||||||
res[dim] = value * intensity
|
res[dim] = value * intensity
|
||||||
|
|
||||||
for dim,intensity in totalIntensities.items():
|
for dim,intensity in totalIntensities.items():
|
||||||
|
Loading…
Reference in New Issue
Block a user