Skip to content

Commit 6f3f65f

Browse files
committed
Remove print statement
1 parent b82c035 commit 6f3f65f

File tree

1 file changed

+0
-1
lines changed
  • mkdocs_git_authors_plugin/git

1 file changed

+0
-1
lines changed

mkdocs_git_authors_plugin/git/page.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def get_authors(self):
6464
self._authors = sorted(self._authors, key=repo._sort_key, reverse=reverse)
6565
self._sorted = True
6666
author_threshold = repo.config("authorship_threshold_percent")
67-
print(f"threshold={author_threshold}", f"authors={self._authors}")
6867
if author_threshold > 0 and len(self._authors) > 1:
6968
self._authors = [a for a in self._authors if a.contribution()*100 > author_threshold]
7069
return self._authors

0 commit comments

Comments
 (0)