v1.0.0 #15
@@ -61,7 +61,7 @@ Open source Discord bot for quizzes and quest-like events.
|
|||||||
"status": {
|
"status": {
|
||||||
// Whether activity is enabled
|
// Whether activity is enabled
|
||||||
"enabled": true,
|
"enabled": true,
|
||||||
// Type of the activity. Can be: "playing", "watching", "listening", "streaming", "competing" and "custom"
|
// Type of the activity. Can be: "playing", "watching", "listening", "streaming", "competing" or "custom"
|
||||||
"activity_type": "playing",
|
"activity_type": "playing",
|
||||||
// Text of the activity
|
// Text of the activity
|
||||||
"activity_text": "The Game Of Life"
|
"activity_text": "The Game Of Life"
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
from abc import ABC
|
from abc import ABC
|
||||||
from logging import Logger
|
from logging import Logger
|
||||||
from typing import Optional, Any, Dict
|
from typing import Any, Dict, Optional
|
||||||
|
|
||||||
from bson import ObjectId
|
from bson import ObjectId
|
||||||
from libbot.cache.classes import Cache
|
from libbot.cache.classes import Cache
|
||||||
|
@@ -20,7 +20,7 @@ from classes.errors import (
|
|||||||
EventStageNotFoundError,
|
EventStageNotFoundError,
|
||||||
GuildNotFoundError,
|
GuildNotFoundError,
|
||||||
)
|
)
|
||||||
from modules.database import col_events, col_users, _update_database_indexes
|
from modules.database import _update_database_indexes, col_events, col_users
|
||||||
from modules.utils import get_logger
|
from modules.utils import get_logger
|
||||||
|
|
||||||
logger: Logger = get_logger(__name__)
|
logger: Logger = get_logger(__name__)
|
||||||
|
@@ -21,7 +21,7 @@ from classes import PycordEvent, PycordGuild, PycordUser
|
|||||||
from classes.errors import GuildNotFoundError
|
from classes.errors import GuildNotFoundError
|
||||||
from classes.pycord_bot import PycordBot
|
from classes.pycord_bot import PycordBot
|
||||||
from modules.database import col_users
|
from modules.database import col_users
|
||||||
from modules.utils import get_logger, is_operation_confirmed, get_utc_now
|
from modules.utils import get_logger, get_utc_now, is_operation_confirmed
|
||||||
|
|
||||||
logger: Logger = get_logger(__name__)
|
logger: Logger = get_logger(__name__)
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user