Skip to content

Commit

Permalink
fix: remove "sub_type" key from issue form before creating
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Oct 23, 2023
1 parent 9a5ede8 commit fdb3af4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ namespaces = true
# ----------------------------------------- Project Metadata -------------------------------------
#
[project]
version = "0.0.0.dev123"
version = "0.0.0.dev124"
name = "RepoDynamics"
dependencies = [
"packaging >= 23.2, < 24",
Expand Down
2 changes: 1 addition & 1 deletion src/repodynamics/meta/files/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def issue_forms(self) -> list[tuple[DynamicFile, str]]:
info = self._out_db.issue_form(issue["id"], idx + 1)
form = {
key: val for key, val in issue.items()
if key not in ["id", "primary_commit_id", "body", "pre_process", "post_process"]
if key not in ["id", "primary_commit_id", "sub_type", "body", "pre_process", "post_process"]
}

labels = form.setdefault("labels", [])
Expand Down

0 comments on commit fdb3af4

Please sign in to comment.