From e5ba7bcca8f9dd46d56728c6d6c2d3715ea5cdd6 Mon Sep 17 00:00:00 2001 From: John Litborn <11260241+jakkdl@users.noreply.github.com> Date: Wed, 26 Oct 2022 14:37:39 +0200 Subject: [PATCH] fix minor typo in readme: fasley->falsey (#122) happened to see it as I read the docs, not fixed in #119 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9594365..ce087d2 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ except OSError: ### PIE787: no-len-condition -Empty collections are fasley in Python so calling `len()` is unnecessary when +Empty collections are falsey in Python so calling `len()` is unnecessary when checking for emptiness in an if statement/expression. Comparing to explicit scalars is allowed.