Skip to content

fix(py): issue template #2989

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/py-runtime-bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ A clear and concise description of what you expected to happen.
If applicable, add screenshots to help explain your problem.

**Runtime (please complete the following information):**
- OS: [e.g. Linux, MacOS]
- Genkit Version [e.g. 0.3.1]
- OS: [e.g. Linux, macOS]
- Genkit Version: [e.g. 0.3.1]

** Node version
**Python version**
- run `python3 --version` at paste here

**Additional context**
Expand Down
2 changes: 1 addition & 1 deletion py/bin/sanitize_schema_typing.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ def visit_ClassDef(self, _node: ast.ClassDef) -> ast.ClassDef: # noqa: N802
"""
# First apply base class transformations recursively
node = super().generic_visit(_node)
new_body: list[ ast.stmt | ast.Constant | ast.Assign ] = []
new_body: list[ast.stmt | ast.Constant | ast.Assign] = []

# Handle Docstrings
if not node.body or not isinstance(node.body[0], ast.Expr) or not isinstance(node.body[0].value, ast.Constant):
Expand Down
Loading