Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling mistakes from #144 #148

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/meticulous/_multiworker.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def handler():
)
return
if tasks_empty:
print("All tasks complete and no new input - quiting.")
print("All tasks complete and no new input - quitting.")
context.controller.quit()
return
context.controller.condition.wait(60)
Expand Down Expand Up @@ -153,7 +153,7 @@ def clear_work_queue(target): # pylint: disable=unused-argument

def show_work_queue(target): # pylint: disable=unused-argument
"""
Dispay the current workload queue
Display the current workload queue
"""
key = "multiworker_workload"
pprint.pprint(get_json_value(key, deflt=[]))
Expand Down
6 changes: 3 additions & 3 deletions app/meticulous/_process.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def task_collect_nonwords(obj, eng): # pylint: disable=unused-argument
repository_list = get_json_value(key, {})
count = len(repository_list)
if count < 1:
print(f"Unexpected number of repostories - {count}")
print(f"Unexpected number of repositories - {count}")
return
reponame = next(iter(repository_list.keys()))
interactive_task_collect_nonwords(
Expand All @@ -290,7 +290,7 @@ def task_submit(obj, eng): # pylint: disable=unused-argument
repository_saves = get_json_value("repository_saves", {})
count = len(repository_saves)
if count < 1:
print(f"Unexpected number of repostories - {count}")
print(f"Unexpected number of repositories - {count}")
return
reponame, reposave = next(iter(repository_saves.items()))
fast_prepare_a_pr_or_issue_for(reponame, reposave)
Expand All @@ -304,7 +304,7 @@ def task_cleanup(obj, eng): # pylint: disable=unused-argument
repository_map = get_json_value(key, {})
count = len(repository_map)
if count < 1:
print(f"Unexpected number of repostories - {count}")
print(f"Unexpected number of repositories - {count}")
return
reponame, reposave = next(iter(repository_map.items()))
remove_repo_for(reponame, reposave, confirm=False)
Loading