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 typos in docstring for remove_duplicate_dicts #2442

Merged
merged 4 commits into from
Jun 27, 2023
Merged
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
2 changes: 1 addition & 1 deletion augur/tasks/util/worker_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def wait_child_tasks(ids_list):


def remove_duplicate_dicts(data: List[dict]) -> List[dict]:
"""Removed duplicate dics from a list
"""Remove duplicate dicts from a list

Args:
data: list of dicts that is being modified
Expand Down
6 changes: 3 additions & 3 deletions docs/new-install.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ sudo apt install rabbitmq-server && #required
sudo snap install go --classic && #required: Go Needs to be version 1.19.x or higher. Snap is the package manager that gets you to the right version. Classic enables it to actually be installed at the correct version.
sudo apt install nginx && # required for hosting
sudo add-apt-repository ppa:mozillateam/firefox-next &&
sudo apt install firefox=111.0~b8+build1-0ubuntu0.22.04.1 &&
sudo apt install firefox=115.0~b2+build1-0ubuntu0.22.04.1 &&
sudo apt install firefox-geckodriver

# You will almost certainly need to reboot after this.
Expand Down Expand Up @@ -308,8 +308,8 @@ redis.exceptions.ConnectionError: Error 111 connecting to 127.0.0.1:6379. Connec

**COMMAND**:
```
hugeadm --thp-never` &&
echo never > /sys/kernel/mm/transparent_hugepage/enabled
sudo hugeadm --thp-never &&
sudo echo never > /sys/kernel/mm/transparent_hugepage/enabled
```


Expand Down