summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2023-05-02 21:20:28 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2023-05-03 22:01:26 +0200
commitc8123d0ac847d79f3f8fcb53b8c5f3578a0bbd9d (patch)
tree10a2571524aad1533040c37d5425883eaebd1619 /doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst
parentca74a1dbdabc138559d267e3adfef3893a1e795a (diff)
downloadpylint-git-c8123d0ac847d79f3f8fcb53b8c5f3578a0bbd9d.tar.gz
Uniformize message and remove useless details.rst
Diffstat (limited to 'doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst')
-rw-r--r--doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst3
1 files changed, 0 insertions, 3 deletions
diff --git a/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst b/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst
deleted file mode 100644
index 2f86acf54..000000000
--- a/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst
+++ /dev/null
@@ -1,3 +0,0 @@
-Following this check blindly in weakly typed code base can create hard to debug issues. If the value
-can be something else that is falsey but not an ``int`` (for example ``None``, an empty sequence,
-or an empty string), the code will not be equivalent.