summaryrefslogtreecommitdiff
path: root/doc/data
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data')
-rw-r--r--doc/data/messages/u/use-implicit-booleaness-not-comparison-to-string/details.rst3
-rw-r--r--doc/data/messages/u/use-implicit-booleaness-not-comparison-to-zero/details.rst3
-rw-r--r--doc/data/messages/u/use-implicit-booleaness-not-comparison/details.rst3
3 files changed, 0 insertions, 9 deletions
diff --git a/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-string/details.rst b/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-string/details.rst
deleted file mode 100644
index c5781b739..000000000
--- a/doc/data/messages/u/use-implicit-booleaness-not-comparison-to-string/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 a string (for example ``None``, an empty sequence, or ``0``),
-the code will not be equivalent.
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.
diff --git a/doc/data/messages/u/use-implicit-booleaness-not-comparison/details.rst b/doc/data/messages/u/use-implicit-booleaness-not-comparison/details.rst
deleted file mode 100644
index 0dc180245..000000000
--- a/doc/data/messages/u/use-implicit-booleaness-not-comparison/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 a sequence (for example ``None``, an empty string, or ``0``),
-the code will not be equivalent.