minor fix

This commit is contained in:
Camilo Sarmiento 2020-06-20 12:16:32 -05:00
parent 784786bb27
commit 5665d726b3

View file

@ -132,7 +132,7 @@ class Employee(metaclass=PoolMeta):
'education': row[29],
'profession': row[28],
'weight': float(row[30]) if row[30] else None,
'health': float(row[32]) if row[32] else None,
'health': row[32],
'notes': row[33],
'addresses': [('create', [{
'street': row[3],