Skip to content

Commit

Permalink
Merge pull request #309 from RIOT-OS/pylint-testutils
Browse files Browse the repository at this point in the history
testutils: fix use-yield-from for pylint
  • Loading branch information
maribu committed Jun 17, 2024
2 parents 52e599e + 6e59006 commit b34bd20
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions testutils/tests/test_github.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@ def __init__(self, issues):

# pylint: disable=W0613
def get_issues(self, *args, **kwargs):
for issue in self.issues:
yield issue
yield from self.issues

issues = [MockIssue(title) for title in issue_titles]
repo = MockRepo(issues)
Expand Down

0 comments on commit b34bd20

Please sign in to comment.