diff options
author | 2023-03-27 19:03:13 +0300 | |
---|---|---|
committer | 2023-03-27 19:03:13 +0300 | |
commit | a62993b44cfc0f2c3c5d746005b9a716dea82add (patch) | |
tree | c69acc0a8401d9386a9b527f4b5367a3e4494d6e | |
parent | Group identical action descriptions in antispam (diff) |
Correct filter match docstring
-rw-r--r-- | bot/exts/filtering/filtering.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/filtering/filtering.py b/bot/exts/filtering/filtering.py index efea57a6a..58d2f125e 100644 --- a/bot/exts/filtering/filtering.py +++ b/bot/exts/filtering/filtering.py @@ -599,7 +599,7 @@ class Filtering(Cog): self, ctx: Context, no_user: bool | None, message: Message | None, *, string: str | None ) -> None: """ - Post any responses from the filter lists for the given message or string. + List the filters triggered for the given message or string. If there's a `message`, the `string` will be ignored. Note that if a `message` is provided, it will go through all validations appropriate to where it was sent and who sent it. To check for matches regardless of the author |