diff options
author | 2021-10-05 16:17:20 +0100 | |
---|---|---|
committer | 2021-10-05 16:17:20 +0100 | |
commit | 025efcde7c5c478ecdc91ecd4c73f13bdfa6bdad (patch) | |
tree | 49174e0d1d70ab9eee545029aad7ba2e476dba4a | |
parent | Fix if statement error (diff) |
Fix linting
Reverted accidental line deletion
-rw-r--r-- | bot/exts/filters/antispam.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bot/exts/filters/antispam.py b/bot/exts/filters/antispam.py index 3b30817df..8bae159d2 100644 --- a/bot/exts/filters/antispam.py +++ b/bot/exts/filters/antispam.py @@ -46,6 +46,7 @@ RULE_FUNCTION_MAPPING = { @dataclass class DeletionContext: """Represents a Deletion Context for a single spam event.""" + members: frozenset[Member] triggered_in: TextChannel channels: set[TextChannel] = field(default_factory=set) |