Skip to content

Commit

Permalink
rename email to avoid flak8 conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Sep 30, 2024
1 parent 4cbba52 commit 5a057af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ python -m pip install -e .
`gitbranch`
: Tells of any non-master branches under directory ~/code

`python -m gitutils.email`
`python -m gitutils.git_email`
: list all contributor email addresses. To fix unwanted emails use [Git-filter-repo](https://www.scivision.dev/git-update-email-address/)

`find_missing_file`
Expand Down
2 changes: 1 addition & 1 deletion src/gitutils/tests/test_email.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

def test_email(git_commit):
p = git_commit
ret = subprocess.check_output([sys.executable, "-m", "gitutils.email", p], text=True)
ret = subprocess.check_output([sys.executable, "-m", "gitutils.git_email", p], text=True)
assert ret

0 comments on commit 5a057af

Please sign in to comment.