From 197b9dc6932784602949a60a814f28d7aaef11b3 Mon Sep 17 00:00:00 2001 From: vincentgallo Date: Sun, 18 Nov 2018 07:17:24 -0600 Subject: [PATCH] Remove Rocket Image/ Fix Link (#22271) Removed rocket image or fix the link to properly display the image --- guide/english/python/bool-function/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/python/bool-function/index.md b/guide/english/python/bool-function/index.md index 6bf8694677..0fa7843101 100644 --- a/guide/english/python/bool-function/index.md +++ b/guide/english/python/bool-function/index.md @@ -54,6 +54,6 @@ There are three Boolean Operators they are `and`, `or`, and `not`. print(bool((2,3,4))) # Returns True as tuple is a non-zero value print(bool([])) # Returns False as list is empty and equal to 0 according to truth value testing -![:rocket:](//forum.freecodecamp.com/images/emoji/emoji_one/rocket.png?v=2 ":rocket:") Run Code +Run Code Official Docs