diff options
author | 2020-09-09 15:17:40 -0700 | |
---|---|---|
committer | 2020-09-09 15:17:54 -0700 | |
commit | f1b0c9da9abf32a838f5ea323325507fd5af8020 (patch) | |
tree | 636c4ae21e33a240e7cd5545e56aeb2a96867cf0 | |
parent | Topics are now iterated through instead of randomly selected. (diff) |
Removed logging.
-rw-r--r-- | bot/exts/evergreen/conversationstarters.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/bot/exts/evergreen/conversationstarters.py b/bot/exts/evergreen/conversationstarters.py index 423662bb..68790dca 100644 --- a/bot/exts/evergreen/conversationstarters.py +++ b/bot/exts/evergreen/conversationstarters.py @@ -1,5 +1,4 @@ import itertools -import logging import random from pathlib import Path @@ -10,8 +9,6 @@ from discord.ext import commands from bot.constants import WHITELISTED_CHANNELS from bot.utils.decorators import override_in_channel -log = logging.getLogger(__name__) - SUGGESTION_FORM = 'https://forms.gle/zw6kkJqv8U43Nfjg9' with Path("bot/resources/evergreen/starter.yaml").open("r", encoding="utf8") as f: |