async def tweet(ctx, username: str): """get the latest tweet by the user""" await ctx.send(web.get_latest_tweet(username))
async def tweet(username: str): """get the latest tweet by the user""" await bot.say(web.get_latest_tweet(username))