From 38ee6702ab5d46ae8de436300a85ff5d61ce9f9e Mon Sep 17 00:00:00 2001 From: Peter Law Date: Sat, 14 Mar 2020 15:06:48 +0000 Subject: Clarify message docstring (#522) As commented in https://github.com/PyCQA/pyflakes/pull/512#discussion_r392587730 --- pyflakes/messages.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyflakes/messages.py b/pyflakes/messages.py index e93a493..c8bf9c0 100644 --- a/pyflakes/messages.py +++ b/pyflakes/messages.py @@ -235,7 +235,7 @@ class TooManyExpressionsInStarredAssignment(Message): class AssertTuple(Message): """ - Assertion test is a tuple, which are always True. + Assertion test is a non-empty tuple literal, which are always True. """ message = 'assertion is always true, perhaps remove parentheses?' -- cgit v1.2.1