diff options
author | 2018-10-12 00:27:22 +0200 | |
---|---|---|
committer | 2018-10-11 23:27:22 +0100 | |
commit | 79dc1d87824b6ab1afc2832f4e40c981ac8f0e20 (patch) | |
tree | c4053342bb6f4fa140b88569378b2cbc2900ba3e /bot/cogs/movie.py | |
parent | Remove extra lines in build script (diff) |
improving the .help docstrings, and making the bot load cogs from the correct path. (#43)
* Improving some docstrings and making it look in ./bot/cogs for cogs.
* Removing pointless stuff from a docstring
Diffstat (limited to 'bot/cogs/movie.py')
-rw-r--r-- | bot/cogs/movie.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/bot/cogs/movie.py b/bot/cogs/movie.py index 82b9c682..925f813f 100644 --- a/bot/cogs/movie.py +++ b/bot/cogs/movie.py @@ -18,8 +18,11 @@ class Movie: def __init__(self, bot): self.bot = bot - @commands.command(name='movie', alias=['tmdb'], brief='Pick a scary movie') + @commands.command(name='movie', alias=['tmdb']) async def random_movie(self, ctx): + """ + Randomly select a scary movie and display information about it. + """ selection = await self.select_movie() movie_details = await self.format_metadata(selection) |