Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
lnxpy committed Apr 13, 2024
1 parent e811299 commit e6aece3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ In PyAction, you are able to parse the issues that are created with issue forms

Consider the following issue form configuration. It contains two fields. A `textarea` named `Text` and a `dropdown` field that contains a few numeric values named `Sentences`.

```yaml title=".github/ISSUE_TEMPlATE/text_summarize.yml"
```yaml title=".github/ISSUE_TEMPLATE/text_summarize.yml"
name: Text Summarization
description: Summarize tens of paragraphs into a smaller amount of sections
title: "AI: Text Summarization"
Expand Down Expand Up @@ -184,7 +184,7 @@ def main():
auth.authenticate()
repo = auth.github.get_repo(io.read("repository"))
user_input = IssueForm(repo=repo, number=io.read("issue_number")).render()
user_input = IssueForm(repo=repo, number=int(io.read("issue_number"))).render()
# user_input = {
# "Text": "While many quantum experiments examine very small..",
Expand Down

0 comments on commit e6aece3

Please sign in to comment.