aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-10-04 14:24:46 -0700
committerFuwn <[email protected]>2025-10-04 14:24:46 -0700
commit0b923614a1f7fd05ddb1f9c4682bcc046cc71527 (patch)
tree88a71abb9b1200bf42c954f5030a1609e7d269d1 /src
parentfix(irm): Dynamic subreddit name in strings (diff)
downloadumabot-0b923614a1f7fd05ddb1f9c4682bcc046cc71527.tar.xz
umabot-0b923614a1f7fd05ddb1f9c4682bcc046cc71527.zip
fix(config): dataclass field order
Diffstat (limited to 'src')
-rw-r--r--src/umabot/config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/umabot/config.py b/src/umabot/config.py
index 164a101..daaa536 100644
--- a/src/umabot/config.py
+++ b/src/umabot/config.py
@@ -24,11 +24,13 @@ class Config:
# Subreddit configuration
subreddit_name: str
- additional_subreddits: Optional[str] = "TracenAcademy" # Comma-separated list of additional subreddits
# Bot messages
roleplay_message: str
+ # Additional subreddit configuration
+ additional_subreddits: Optional[str] = "TracenAcademy" # Comma-separated list of additional subreddits
+
# Bot settings
check_interval: int = 60 # seconds
max_posts_per_day: int = 3