From b06b936ef62035e8239e251e8c4db2058790848e Mon Sep 17 00:00:00 2001 From: zortazert Date: Mon, 11 Apr 2022 19:41:41 -0500 Subject: [PATCH 1/2] 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 ``` From 980a1aabaa96edfee49ffcd31d61ee7ba12f8d1e Mon Sep 17 00:00:00 2001 From: zortazert Date: Mon, 11 Apr 2022 19:48:42 -0500 Subject: [PATCH 2/2] Fixed missing parenthese --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c16f7ee..10f3eca 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ import time import os while True: time.sleep(300) # Every 5 minutes - os.system("git pull" # Pull the changes from git + os.system("git pull") # Pull the changes from git ```