From e87d0caa7e5fc531e07f1810e29b31dee07e97fe Mon Sep 17 00:00:00 2001 From: Dazed Date: Sat, 2 Dec 2023 20:49:46 -0600 Subject: [PATCH] Remove useless comment --- modules/rpgmakermvmz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/rpgmakermvmz.py b/modules/rpgmakermvmz.py index 2ed9a0a..4fc2ada 100644 --- a/modules/rpgmakermvmz.py +++ b/modules/rpgmakermvmz.py @@ -19,7 +19,7 @@ MODEL = os.getenv('model') TIMEOUT = int(os.getenv('timeout')) LANGUAGE = os.getenv('language').capitalize() PROMPT = Path('prompt.txt').read_text(encoding='utf-8') -THREADS = int(os.getenv('threads')) # Controls how many threads are working on a single file (May have to drop this) +THREADS = int(os.getenv('threads')) LOCK = threading.Lock() WIDTH = int(os.getenv('width')) LISTWIDTH = int(os.getenv('listWidth'))