Browse Source
Previously any keyword arguments passed into the `Plugin.command` decorator that didn't match a keyword argument inside of `Comman.update` would be collected into the `metdata` for a command. This can cause fairly severe bugs in your code if you make typos when passing keyword arguments into the decorator since they will be blindly accepted. For example consider a situation where a user (lets say me) creates the following command: ``` @Plugin.command(..., permissions=CommandLevels.TRUSTED) ``` While this looks perfectly valid and the code will run without issue, this command actually has a permissions level of '0' since the correct keyword argument is `level`. This commit changes the behavior to require all metadata passed in to be within a `metadata` kwarg. Any unknown keyword arguments passed will throw a traditional Python error.pull/139/head
1 changed files with 2 additions and 2 deletions
Loading…
Reference in new issue