Fix: Handle emoji encoding error in dev_environment.py

Prevents UnicodeEncodeError on Windows when displaying success message.
This commit is contained in:
Ryan Schultz
2026-01-28 18:34:14 -06:00
parent 5ce6d927f3
commit 0e8c98a7bb
+1 -1
View File
@@ -193,7 +193,7 @@ def main() -> None:
print(f"Downloading {url} -> {filepath}")
urllib.request.urlretrieve(url, filepath)
input("Dev environment is all set. 🎉🎉\nPress Enter to continue..." "")
input("Dev environment is all set!! \nPress Enter to continue...")
if __name__ == "__main__":