Skip to content

Commit 4807a0b

Browse files
committed
fix: remove Python examples from gherkin-validation skill
- Remove gherkin-validation/examples/ directory with Python test files - Fix type errors in setup_project.py for optional parameters
1 parent 6a47f9a commit 4807a0b

File tree

3 files changed

+6
-170
lines changed

3 files changed

+6
-170
lines changed

.opencode/skills/gherkin-validation/examples/invalid_formats.py

Lines changed: 0 additions & 78 deletions
This file was deleted.

.opencode/skills/gherkin-validation/examples/valid_formats.py

Lines changed: 0 additions & 88 deletions
This file was deleted.

setup_project.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,14 @@ def run(
200200
process_templates(replacements)
201201

202202
# Rename parent folder based on project name
203-
rename_parent_folder(project_name)
203+
if project_name:
204+
rename_parent_folder(project_name)
204205

205206
# Show Git configuration instructions
206-
show_git_setup_instructions(
207-
github_username, project_name, author_name, author_email
208-
)
207+
if github_username and project_name and author_name and author_email:
208+
show_git_setup_instructions(
209+
github_username, project_name, author_name, author_email
210+
)
209211

210212
log_message("\nProject setup complete!")
211213
log_message("\nNext steps:")

0 commit comments

Comments
 (0)