pep8 much?
This commit is contained in:
parent
e77e45d8b8
commit
ed50bc746c
33 changed files with 92 additions and 99 deletions
|
@ -84,7 +84,7 @@ def get_episode_info(episode, api_key):
|
|||
|
||||
@hook.command
|
||||
@hook.command('tv')
|
||||
def tv_next(inp, bot = None):
|
||||
def tv_next(inp, bot=None):
|
||||
".tv <series> -- Get the next episode of <series>."
|
||||
|
||||
api_key = bot.config.get("api_keys", {}).get("tvdb", None)
|
||||
|
@ -134,7 +134,7 @@ def tv_next(inp, bot = None):
|
|||
|
||||
@hook.command
|
||||
@hook.command('tv_prev')
|
||||
def tv_last(inp, bot = None):
|
||||
def tv_last(inp, bot=None):
|
||||
".tv_last <series> -- Gets the most recently aired episode of <series>."
|
||||
|
||||
api_key = bot.config.get("api_keys", {}).get("tvdb", None)
|
||||
|
|
Reference in a new issue