From 8484726595287cd5d3c2bb28098bfe598d6737b9 Mon Sep 17 00:00:00 2001 From: Christopher Goh Date: Mon, 18 Jul 2022 00:21:48 +0800 Subject: [PATCH] [Astronomer's Way] Fix missing whitespace and style --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e7205e1..f57fea2 100644 --- a/README.md +++ b/README.md @@ -637,7 +637,7 @@ def heat_death(): def increase_entropy(): return randbits(64) -while heat_death()==False: +while not heat_death(): increase_entropy(); print('The universe is dead, VIM no longer exists');