From b06b936ef62035e8239e251e8c4db2058790848e Mon Sep 17 00:00:00 2001 From: zortazert Date: Mon, 11 Apr 2022 19:41:41 -0500 Subject: [PATCH] Trying to fix weird tab in readme code example --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fe16569..c16f7ee 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,8 @@ If you want your instance updated with all the new software constantly, please r import time import os while True: - time.sleep(300) # Every 5 minutes - os.system("git pull") # Pull the changes from git + time.sleep(300) # Every 5 minutes + os.system("git pull" # Pull the changes from git ```