diff options
| author | 2018-12-03 23:48:14 +0100 | |
|---|---|---|
| committer | 2018-12-03 23:48:14 +0100 | |
| commit | 7bb80935eec880ad27279fbc45d2ffb54475d849 (patch) | |
| tree | a8086dacff5fc0b7084f5e496d38869539561f67 /bot/seasons/christmas/adventofcode.py | |
| parent | Various fixes from review (squished) (diff) | |
Adapt code style according to review
Diffstat (limited to 'bot/seasons/christmas/adventofcode.py')
| -rw-r--r-- | bot/seasons/christmas/adventofcode.py | 8 | 
1 files changed, 5 insertions, 3 deletions
| diff --git a/bot/seasons/christmas/adventofcode.py b/bot/seasons/christmas/adventofcode.py index 527697f2..e9726752 100644 --- a/bot/seasons/christmas/adventofcode.py +++ b/bot/seasons/christmas/adventofcode.py @@ -130,9 +130,11 @@ class AdventOfCode:          await ctx.invoke(self.bot.get_command("help"), "adventofcode") -    @adventofcode_group.command(name="subscribe", -                                aliases=("sub", "notifications", "notify", "notifs"), -                                brief="Notifications for new days") +    @adventofcode_group.command( +        name="subscribe", +        aliases=("sub", "notifications", "notify", "notifs"), +        brief="Notifications for new days" +    )      async def aoc_subscribe(self, ctx: commands.Context):          """          Assign the role for notifications about new days being ready. | 
