diff options
author | 2021-04-18 21:12:08 +0100 | |
---|---|---|
committer | 2021-04-18 21:12:08 +0100 | |
commit | 94af3c07678f1f2dee722f4780a816426efd0851 (patch) | |
tree | 2738277f99eacf9efedccba653b3775cecccecc8 | |
parent | Merge pull request #1528 from python-discord/mbaruh/allow_eval (diff) |
Added default duration of 1h to superstarify
-rw-r--r-- | bot/exts/moderation/infraction/superstarify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/moderation/infraction/superstarify.py b/bot/exts/moderation/infraction/superstarify.py index 704dddf9c..245f14905 100644 --- a/bot/exts/moderation/infraction/superstarify.py +++ b/bot/exts/moderation/infraction/superstarify.py @@ -109,7 +109,7 @@ class Superstarify(InfractionScheduler, Cog): self, ctx: Context, member: Member, - duration: Expiry, + duration: Expiry = "1h", *, reason: str = '', ) -> None: |