LukeMattingly
commited on
Commit
·
0a1dae9
1
Parent(s):
c2dffcc
python interpreter seems to have issues looking at
Browse files- prompts.yaml +2 -1
- requirements.txt +1 -1
prompts.yaml
CHANGED
@@ -18,7 +18,8 @@
|
|
18 |
Code:
|
19 |
```py
|
20 |
files_changed = get_pr_files_changed(github_url="https://github.com/user/repo", pr_number=42)
|
21 |
-
|
|
|
22 |
```<end_code>
|
23 |
|
24 |
**Observation:** "['src/main.py', 'docs/README.md']"
|
|
|
18 |
Code:
|
19 |
```py
|
20 |
files_changed = get_pr_files_changed(github_url="https://github.com/user/repo", pr_number=42)
|
21 |
+
for file in files_changed:
|
22 |
+
print(file)
|
23 |
```<end_code>
|
24 |
|
25 |
**Observation:** "['src/main.py', 'docs/README.md']"
|
requirements.txt
CHANGED
@@ -2,4 +2,4 @@ markdownify
|
|
2 |
smolagents
|
3 |
requests
|
4 |
duckduckgo_search
|
5 |
-
pandas
|
|
|
2 |
smolagents
|
3 |
requests
|
4 |
duckduckgo_search
|
5 |
+
pandas
|