mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-10 18:33:34 -05:00
0cc613ef8a
- Added a default value for 'owners_uids' - Added notes on proper types where applicable. - That's pretty much it Fixes #26
27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
##########################################################
|
|
# #
|
|
# ¡ This is a template ! #
|
|
# #
|
|
# Make sure to edit it with your preferred settings! #
|
|
# And to place it in the root of the bot's folder, #
|
|
# without the 'template_' part of the name #
|
|
# #
|
|
##########################################################
|
|
"""
|
|
Settings and options for the bot.
|
|
---
|
|
"""
|
|
|
|
# The prefix for the bot (str). Define a list of stings for multiple prefixes.
|
|
# ie: `["?", "!", "pls "]`
|
|
prefix = "?"
|
|
|
|
# Whether the bot should print full stacktraces for normal exceptions: `True`,
|
|
# or be nice and only print small messages: `False` (the default).
|
|
debug = False
|
|
|
|
# A tuple of user IDs that should be considered "bot owners".
|
|
# * Those users will have full control over the bot.
|
|
# ! This MUST be a tuple of integers. Single element tuple: `(123,)`
|
|
owners_uids = (200102491231092736,)
|