From d225eed76c97410ff3e1a034bebcda41591e76b9 Mon Sep 17 00:00:00 2001 From: Gowtham Rao MD PhD Date: Thu, 12 Mar 2026 10:30:01 -0400 Subject: [PATCH] chore: update leftover poetry comment to uv in hook script (#65) --- hooks/post_gen_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 7de3dc6..8a4e1a4 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -18,7 +18,7 @@ print("Initializing Git repository...") try: - # On Windows, shell=True is required to resolve commands like 'poetry' if they are batch files + # On Windows, shell=True is required to resolve commands like 'uv' if they are batch files # or not strictly executables. On POSIX, shell=False is preferred. use_shell = sys.platform == "win32"