mirror of
https://github.com/yweber/lodel2.git
synced 2026-01-07 07:42:14 +01:00
Fix bad argument in DummyDatasource
This commit is contained in:
parent
7bf9ceb7a3
commit
f5e79bbac1
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ class DummyDatasource(object):
|
|||
# @param leclass LeClass : LeClass child class
|
||||
# @param data list: a lis of dictionnary of field:value to save
|
||||
# @return lodel_id int: new lodel_id of the newly created LeObject
|
||||
def insert(self, letype, leclass, **datas):
|
||||
def insert(self, letype, leclass, datas):
|
||||
print("DummyDatasource.insert: ", letype, leclass, datas)
|
||||
return 42
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue