[lib.acl] fix args_check for get parameters

This commit is contained in:
Maxime Alves LIRMM 2021-06-18 12:08:51 +02:00
parent a14285475e
commit a539212faf
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ def args_check(fct):
data = {}
for key in required:
data[key] = data_.pop(key, None)
data[key] = data_.get(key, None)
if data[key] is None:
missing.append(key)