Skip to content

Commit f49420f

Browse files
committed
fix: correct docstring syntax error and update gitignore
- Fix escaped quotes in post_gen_project.py docstring - Add run_in_env.sh helper script to gitignore - Helper script provides easy access to micromamba environment
1 parent 2bc1e26 commit f49420f

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,3 +167,6 @@ internal/
167167
# Temporary files
168168
.ui_checksum_cache
169169
selected_activities.json
170+
171+
# Development helper scripts
172+
run_in_env.sh

hooks/post_gen_project.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ def setup_pre_commit(optional=True):
164164

165165

166166
def main():
167-
\"\"\"Main function to handle post-generation setup.\"\"\"\n base_path = os.getcwd()
167+
"""Main function to handle post-generation setup."""
168+
base_path = os.getcwd()
168169
init_flag_path = os.path.join(base_path, ".initialized")
169170

170171
# Check if the project has been initialized before

0 commit comments

Comments
 (0)