diff options
author | 2020-09-26 12:23:20 -0700 | |
---|---|---|
committer | 2020-09-26 12:23:20 -0700 | |
commit | f81920ad6427490a06061cfb8533828b26735dcf (patch) | |
tree | ecad538c52d84a6afdff8815c6928020a43ed184 | |
parent | Sync: remove _asdict comment (diff) |
Sync: update sync() docstring
-rw-r--r-- | bot/exts/backend/sync/_syncers.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/bot/exts/backend/sync/_syncers.py b/bot/exts/backend/sync/_syncers.py index a07a93eab..3d4a09df3 100644 --- a/bot/exts/backend/sync/_syncers.py +++ b/bot/exts/backend/sync/_syncers.py @@ -44,9 +44,7 @@ class Syncer(abc.ABC): """ Synchronise the database with the cache of `guild`. - If the differences between the cache and the database are greater than - `bot.constants.Sync.max_diff`, then a confirmation prompt will be sent to the dev-core - channel. The confirmation can be optionally redirect to `ctx` instead. + If `ctx` is given, send a message with the results. """ log.info(f"Starting {self.name} syncer.") |