Commit 9ecdb1c3 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

ERP5SyncML: remove the duplicate condition code that is never evaluated.

parent e9b37c2a
......@@ -796,13 +796,6 @@ class ERP5Conduit(XMLSyncUtilsMixin):
data = DateTime(data)
elif data_type == INT_TYPE :
data = int(data)
elif data_type == BOOLEAN_TYPE:
if data == 'False':
data = False
elif data == 'True':
data = True
else:
raise NotImplementedError
return data
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment