You are viewing a single comment's thread from:
RE: Bots In Python #2 | Removing, Improving And Adding Commands | DiscordSteem | Part #2
Thank you for your contribution.
- Improve the structure of your tutorial, give spaces between paragraphs. Paragraphs very extensive it gets annoying to read.
- Please put comments in your code, it is easier to interpret what you are doing in the code.For example:
//Description bot commands
@bot.command(pass_context=True)
async def blog(ctx, username, amount=5):
acc = Account(username.lower())
//Description of the cycle
for post in acc.blog_history(limit=amount, reblogs=False):
embed = discord.Embed(title=(post["title"]), color=(0x00ff00))
await bot.say(embed=embed)
Your contribution has been evaluated according to Utopian policies and guidelines, as well as a predefined set of questions pertaining to the category.
To view those questions and the relevant answers related to your post, click here.
Need help? Write a ticket on https://support.utopian.io/.
Chat with us on Discord.
[utopian-moderator]
Thank you for your review, @portugalcoin!
So far this week you've reviewed 18 contributions. Keep up the good work!
Thanks for the review. I will try my best to add more comments and make paragraphs shorter next time!