diff options
| author | Fuwn <[email protected]> | 2025-10-04 14:24:46 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-10-04 14:24:46 -0700 |
| commit | 0b923614a1f7fd05ddb1f9c4682bcc046cc71527 (patch) | |
| tree | 88a71abb9b1200bf42c954f5030a1609e7d269d1 /src | |
| parent | fix(irm): Dynamic subreddit name in strings (diff) | |
| download | umabot-0b923614a1f7fd05ddb1f9c4682bcc046cc71527.tar.xz umabot-0b923614a1f7fd05ddb1f9c4682bcc046cc71527.zip | |
fix(config): dataclass field order
Diffstat (limited to 'src')
| -rw-r--r-- | src/umabot/config.py | 4 |
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 |