Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0236a5c

Browse files
committed
removing prints
1 parent 6e682c8 commit 0236a5c

3 files changed

Lines changed: 0 additions & 3 deletions

File tree

.github/workflows/continuous-integration-workflow.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,3 @@ jobs:
4646
uses: codecov/codecov-action@v1
4747
with:
4848
file: ./coverage.xml
49-
yml: .codecov.yml

pydriller/git_repository.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ def get_list_commits(self, args: List = None) -> Generator[Commit, None, None]:
133133
if args is None or not args:
134134
args = [self.repo.head.commit.hexsha, '--reverse']
135135

136-
print(args)
137136
for commit in self.repo.iter_commits(args):
138137
yield self.get_commit_from_gitpython(commit)
139138

pydriller/utils/conf.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,6 @@ def build_args(self):
212212
if not self.get('reversed_order'):
213213
args.append('--reverse')
214214

215-
print(f'Returning args: {args}')
216215
return args
217216

218217
def is_commit_filtered(self, commit: Commit):

0 commit comments

Comments
 (0)