small typo fix for "windows" vrs "Windows"

This commit is contained in:
Tasha Upchurch 2024-03-28 13:41:58 -04:00
parent 5f35f68b4d
commit 5cf7589209
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ class Tts:
urllib.request.urlretrieve(asset_url, os.path.join(PIPER_FOLDER_PATH, PIPER_ASSETNAME))
# Extract the downloaded file
if OS == "Windows":
if OS == "windows":
import zipfile
with zipfile.ZipFile(os.path.join(PIPER_FOLDER_PATH, PIPER_ASSETNAME), 'r') as zip_ref:
zip_ref.extractall(path=PIPER_FOLDER_PATH)