Spaces:
Sleeping
Sleeping
mriusero
commited on
Commit
·
210b910
1
Parent(s):
4ce7df6
fix init
Browse files- tools/analyze_repo.py +2 -2
tools/analyze_repo.py
CHANGED
|
@@ -10,8 +10,8 @@ class GitHubCodeQualityTool(Tool):
|
|
| 10 |
}
|
| 11 |
output_type = "string"
|
| 12 |
|
| 13 |
-
def __init__(self):
|
| 14 |
-
|
| 15 |
|
| 16 |
def forward(self, github_url: str) -> str:
|
| 17 |
"""
|
|
|
|
| 10 |
}
|
| 11 |
output_type = "string"
|
| 12 |
|
| 13 |
+
def __init__(self, *args, **kwargs):
|
| 14 |
+
self.is_initialized = False
|
| 15 |
|
| 16 |
def forward(self, github_url: str) -> str:
|
| 17 |
"""
|