We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9212dcb commit 42454d2Copy full SHA for 42454d2
agent/run_agent.py
@@ -57,13 +57,13 @@ def run_agent_for_repo(
57
# get repo info
58
_, repo_name = example["repo"].split("/")
59
60
+ # before starting, display all information to terminal
61
original_repo_name = repo_name
62
+ update_queue.put(("start_repo", (original_repo_name, 0)))
63
64
repo_name = repo_name.lower()
65
repo_name = repo_name.replace(".", "-")
66
- # before starting, display all information to terminal
- update_queue.put(("start_repo", (original_repo_name, 0)))
67
68
repo_path = os.path.join(repo_base_dir, repo_name)
69
repo_path = os.path.abspath(repo_path)
0 commit comments