Skip to content

Commit 26b3ad2

Browse files
committed
Merge branch 'master' of github.com:derek73/python-nameparser
2 parents 42292eb + 3efe171 commit 26b3ad2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ jobs:
2727
- name: Install dependencies
2828
run: |
2929
python -m pip install --upgrade pip
30-
pip install twine
31-
pip install sphinx
30+
python -m pip install twine
31+
python -m pip install sphinx
3232
if [ -f dev-requirements.txt ]; then pip install -r dev-requirements.txt; fi
3333
- name: Run Tests
3434
run: |

nameparser/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ def as_dict(self, include_empty=True):
191191

192192
def __process_initial__(self, name_part, firstname=False):
193193
"""
194-
Name parts may include prefixes or conjuctions. This function filters these from the name unless it is
194+
Name parts may include prefixes or conjunctions. This function filters these from the name unless it is
195195
a first name, since first names cannot be conjunctions or prefixes.
196196
"""
197197
parts = name_part.split(" ")

0 commit comments

Comments
 (0)