diff options
author | 2019-11-09 13:49:55 +0100 | |
---|---|---|
committer | 2019-11-09 13:49:55 +0100 | |
commit | b1c6b4e20578395a5766ac116fd4def1df777de7 (patch) | |
tree | 9c36370264fff2689965580c450f58da3dfcee36 | |
parent | Use range to build mock mentions list (diff) |
Adjust type hint to correctly represent internal type
-rw-r--r-- | tests/bot/rules/test_mentions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/bot/rules/test_mentions.py b/tests/bot/rules/test_mentions.py index e1a971dbb..08dd1d6d5 100644 --- a/tests/bot/rules/test_mentions.py +++ b/tests/bot/rules/test_mentions.py @@ -7,7 +7,7 @@ from tests.helpers import async_test class FakeMessage(NamedTuple): author: str - mentions: List[None] + mentions: List[int] class Case(NamedTuple): |