From 9652dbdf859edcd04fa3a174c9b89eca4a2cabd4 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Mon, 31 Oct 2022 03:37:02 +0000 Subject: [PATCH] fix typo in unused comparison (B015) message (#307) --- bugbear.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bugbear.py b/bugbear.py index f02e91a..6e12c15 100644 --- a/bugbear.py +++ b/bugbear.py @@ -1239,7 +1239,7 @@ def visit_Lambda(self, node): } B015 = Error( message=( - "B015 Result of comparison is not used. This line doesn't do" + "B015 Result of comparison is not used. This line doesn't do " "anything. Did you intend to prepend it with assert?" ) )