Closed sebffischer closed 1 year ago
When passing the dict argument by position with the "unsafe" dictionary sugar functions this caused bugs with parameters (like d) whose names partially matched dict. To avoid this, the dict argument is renamed to .dict.
dict
d
.dict
Issue 83
Addresses https://github.com/mlr-org/mlr3misc/issues/83
When passing the
dict
argument by position with the "unsafe" dictionary sugar functions this caused bugs with parameters (liked
) whose names partially matcheddict
. To avoid this, thedict
argument is renamed to.dict
.Issue 83