Skip to content
Open
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
2 changes: 1 addition & 1 deletion pr_agent/tools/pr_description.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,7 +561,7 @@ def _prepare_pr_answer(self) -> Tuple[str, str, str, List[dict]]:
if 'labels' in self.data and self.git_provider.is_supported("get_labels"):
self.data.pop('labels')
if not get_settings().pr_description.enable_pr_type:
self.data.pop('type')
self.data.pop('type', None)

# Remove the 'PR Title' key from the dictionary
ai_title = self.data.pop('title', self.vars["title"])
Expand Down