1
0
Fork 0
mirror of synced 2024-05-20 12:32:26 +12:00

Removed not required string conversions

This commit is contained in:
phxntxm 2017-03-08 00:27:03 -06:00
parent 0823c19b94
commit 69a92431d8
2 changed files with 4 additions and 4 deletions

View file

@ -102,7 +102,7 @@ class Deviantart:
# Now we can update the user's last updated for this DA
# We want to do this whether or not our last if statement was met
update = {'last_updated': {da_name: result['deviationid']}}
await utils.update_content('deviantart', update, str(user.id))
await utils.update_content('deviantart', update, user.id)
except Exception as e:
tb = traceback.format_exc()
fmt = "{1}\n{0.__class__.__name__}: {0}".format(tb, e)
@ -123,7 +123,7 @@ class Deviantart:
EXAMPLE: !da sub MyFavoriteArtistEva<3
RESULT: Notifications of amazing pics c:"""
key = str(ctx.message.author.id)
key = ctx.message.author.id
content = await utils.get_content('deviantart', key)
# TODO: Ensure the user provided is a real user
@ -149,7 +149,7 @@ class Deviantart:
EXAMPLE: !da unsub TheArtistWhoBetrayedMe
RESULT: No more pics from that terrible person!"""
key = str(ctx.message.author.id)
key = ctx.message.author.id
content = await utils.get_content('deviantart', key)
if content is None or content[0]['subbed'] is None:

View file

@ -259,7 +259,7 @@ class Interaction:
await ctx.send("Why the heck are you booping me? Get away from me >:c")
return
key = str(booper.id)
key = booper.id
boops = await utils.get_content('boops', key)
if boops is not None:
boops = boops[0]['boops']