From 3cadfc3d3c28239457d898a433c143b99a6a8d86 Mon Sep 17 00:00:00 2001 From: James Lamb Date: Fri, 28 Oct 2022 22:47:57 -0500 Subject: [PATCH] fix typo in unused comparison (B015) message --- 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?" ) )