|
@@ -27,7 +27,7 @@ class DummyDatasource(object):
|
27
|
27
|
# @param leclass LeClass : LeClass child class
|
28
|
28
|
# @param data list: a lis of dictionnary of field:value to save
|
29
|
29
|
# @return lodel_id int: new lodel_id of the newly created LeObject
|
30
|
|
- def insert(self, letype, leclass, **datas):
|
|
30
|
+ def insert(self, letype, leclass, datas):
|
31
|
31
|
print("DummyDatasource.insert: ", letype, leclass, datas)
|
32
|
32
|
return 42
|
33
|
33
|
|