Spaces:
Runtime error
Runtime error
fix bug
Browse files
py_code_analyzer/code_fetcher.py
CHANGED
|
@@ -46,7 +46,7 @@ class CodeFetcher:
|
|
| 46 |
and not result["name"].startswith(".")
|
| 47 |
):
|
| 48 |
python_files += cls.get_python_files(
|
| 49 |
-
owner, repo, path=result["path"], recursive=recursive
|
| 50 |
)
|
| 51 |
|
| 52 |
return python_files
|
|
|
|
| 46 |
and not result["name"].startswith(".")
|
| 47 |
):
|
| 48 |
python_files += cls.get_python_files(
|
| 49 |
+
owner, repo, path=result["path"], ref=ref, recursive=recursive
|
| 50 |
)
|
| 51 |
|
| 52 |
return python_files
|