Remove useless comment
This commit is contained in:
parent
8f5a5e11b1
commit
e87d0caa7e
1 changed files with 1 additions and 1 deletions
|
|
@ -19,7 +19,7 @@ MODEL = os.getenv('model')
|
||||||
TIMEOUT = int(os.getenv('timeout'))
|
TIMEOUT = int(os.getenv('timeout'))
|
||||||
LANGUAGE = os.getenv('language').capitalize()
|
LANGUAGE = os.getenv('language').capitalize()
|
||||||
PROMPT = Path('prompt.txt').read_text(encoding='utf-8')
|
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()
|
LOCK = threading.Lock()
|
||||||
WIDTH = int(os.getenv('width'))
|
WIDTH = int(os.getenv('width'))
|
||||||
LISTWIDTH = int(os.getenv('listWidth'))
|
LISTWIDTH = int(os.getenv('listWidth'))
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue