diff options
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/dice.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/dice.py b/modules/dice.py index 0505bea6..8923c51c 100644 --- a/modules/dice.py +++ b/modules/dice.py @@ -11,7 +11,7 @@ class Module(ModuleManager.BaseModule): :usage: [1-5]d[1-20] """ roll = event["args_split"][0].lower() - count, sides = roll.partition("d") + count, _, sides = roll.partition("d") if not count.isdigit() or not sides.isdigit(): raise utils.EventError(ERROR_FORMAT) |
