mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-20 18:06:08 -05:00
[V3 Travis] Update travis to not skip pipfile lock... (#1678)
* Update travis to not sip pipfile lock update pipfile dependencies additional black formatting pass to conform to black 18.5b * . * pin async timeout until further discussion of 3.5 support * .
This commit is contained in:
@@ -143,9 +143,8 @@ class Image:
|
||||
await ctx.send_help()
|
||||
return
|
||||
|
||||
url = (
|
||||
"http://api.giphy.com/v1/gifs/search?&api_key={}&q={}"
|
||||
"".format(GIPHY_API_KEY, keywords)
|
||||
url = "http://api.giphy.com/v1/gifs/search?&api_key={}&q={}" "".format(
|
||||
GIPHY_API_KEY, keywords
|
||||
)
|
||||
|
||||
async with self.session.get(url) as r:
|
||||
@@ -167,9 +166,8 @@ class Image:
|
||||
await ctx.send_help()
|
||||
return
|
||||
|
||||
url = (
|
||||
"http://api.giphy.com/v1/gifs/random?&api_key={}&tag={}"
|
||||
"".format(GIPHY_API_KEY, keywords)
|
||||
url = "http://api.giphy.com/v1/gifs/random?&api_key={}&tag={}" "".format(
|
||||
GIPHY_API_KEY, keywords
|
||||
)
|
||||
|
||||
async with self.session.get(url) as r:
|
||||
|
||||
Reference in New Issue
Block a user