From 0e8c98a7bbea6d5680b33a75dfbba36d38b47ca5 Mon Sep 17 00:00:00 2001 From: Ryan Schultz Date: Wed, 28 Jan 2026 18:34:14 -0600 Subject: [PATCH] Fix: Handle emoji encoding error in dev_environment.py Prevents UnicodeEncodeError on Windows when displaying success message. --- src/bonsai/scripts/dev_environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bonsai/scripts/dev_environment.py b/src/bonsai/scripts/dev_environment.py index 4598d0bf49..d16edad96d 100644 --- a/src/bonsai/scripts/dev_environment.py +++ b/src/bonsai/scripts/dev_environment.py @@ -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__":