summaryrefslogtreecommitdiff
path: root/doc/data/messages/c/compare-to-empty-string/good.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/c/compare-to-empty-string/good.py')
-rw-r--r--doc/data/messages/c/compare-to-empty-string/good.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/doc/data/messages/c/compare-to-empty-string/good.py b/doc/data/messages/c/compare-to-empty-string/good.py
deleted file mode 100644
index 6c4c67e36..000000000
--- a/doc/data/messages/c/compare-to-empty-string/good.py
+++ /dev/null
@@ -1,8 +0,0 @@
-x = ""
-y = "hello"
-
-if not x:
- print("x is an empty string")
-
-if y:
- print("y is not an empty string")