Skip to content

Commit 6f5a16e

Browse files
committed
enable
1 parent 665823b commit 6f5a16e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

patchwork/common/tools/bash_tool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import subprocess
44
from pathlib import Path
55

6-
from patchwork.common.tools import Tool
6+
from patchwork.common.tools.tool import Tool
77

88

99
class BashTool(Tool, tool_name="bash"):

patchwork/common/tools/code_edit_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from pathlib import Path
55
from typing import Literal
66

7-
from patchwork.common.tools import Tool
7+
from patchwork.common.tools.tool import Tool
88

99

1010
class CodeEditTool(Tool, tool_name="code_edit_tool"):

patchwork/patchflows/ResolveIssue/ResolveIssue.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def run(self) -> dict:
3838
self.inputs["issue_description"] = outputs
3939
outputs = _ResolveIssue(self.inputs).run()
4040
self.inputs.update(outputs)
41-
# self.inputs["pr_header"] = f'This pull request from patchwork fixes {self.inputs["issue_url"]}.'
42-
# outputs = PR(self.inputs).run()
43-
# self.inputs.update(outputs)
41+
self.inputs["pr_header"] = f'This pull request from patchwork fixes {self.inputs["issue_url"]}.'
42+
outputs = PR(self.inputs).run()
43+
self.inputs.update(outputs)
4444

4545
return self.inputs

0 commit comments

Comments
 (0)