Skip to content

Commit

Permalink
Remove list size reduction from biomedical data
Browse files Browse the repository at this point in the history
  • Loading branch information
mknorps committed Apr 23, 2024
1 parent ae9653b commit 0f17542
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,12 @@ def do_analysis(repo_url, repo_name, save_location):
tasks = []
with tqdm(
desc="Running FawltyDeps analysis",
total=len(repositories[1620:]),
total=len(repositories),
position=0,
leave=True,
) as pbar:
with ThreadPoolExecutor() as ex:
for repo in repositories[1620:]:
for repo in repositories:
repo_url = "https://:@" + repo["domain"] + "/" + repo["repository"] + ".git"
repo_name = repo["repository"].split("/")[-1]
save_location = "temp/" + repo_name
Expand Down

0 comments on commit 0f17542

Please sign in to comment.