Skip to content

Commit 22cce90

Browse files
committed
fix: test
1 parent cc076eb commit 22cce90

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

src/codegen/extensions/tools/create_file.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def create_file(codebase: Codebase, filepath: str, content: str) -> CreateFileOb
4545
filepath=filepath,
4646
content="",
4747
line_count=0,
48+
raw_content="",
4849
),
4950
)
5051

@@ -72,5 +73,6 @@ def create_file(codebase: Codebase, filepath: str, content: str) -> CreateFileOb
7273
filepath=filepath,
7374
content="",
7475
line_count=0,
76+
raw_content="",
7577
),
7678
)

src/codegen/extensions/tools/view_file.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ def view_file(
133133
Ensure that this is indeed the correct filepath, else keep searching to find the correct fullpath.""",
134134
filepath=filepath,
135135
content="",
136+
raw_content="",
136137
line_count=0,
137138
start_line=start_line,
138139
end_line=end_line,

0 commit comments

Comments
 (0)