From 2aa19e8cdafe292f817be2eb228fcf534178ad18 Mon Sep 17 00:00:00 2001 From: 30secondsofcode <30secondsofcode@gmail.com> Date: Fri, 23 Aug 2019 06:49:03 +0000 Subject: [PATCH] Travis build: 41 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5773beefa..a5ac14f37 100644 --- a/README.md +++ b/README.md @@ -1380,7 +1380,7 @@ Returns `True` if the number is odd, `False` if the number is even. ```py def is_odd(num): - return num % 2 == `0` + return num % 2 != 0 ```