frc1418 / VictiBot

:envelope: Chatbot for FRC Team 1418's Discord server.
MIT License
2 stars 10 forks source link

stored prefix and message_index to camel case #7

Closed TomOrth closed 7 years ago

TomOrth commented 7 years ago

For discord bots, its better practice to store the prefix into a data storage such as a variable, file, or database, as then you can update the prefix the whole bot from one source. Also, its cleaner code to use camel case rather than underscores

ErikBoesen commented 7 years ago

I'd actually disagree with the latter point. Camel case is the standard for Java and JavaScript, however the reigning standard for Python is to use_underscored_variables. This is consistent with discord.py's standards, as well.