Skip to content

Commit

Permalink
Merge pull request #6 from Sneder89/master
Browse files Browse the repository at this point in the history
Update code to be compatible to pylint v3
  • Loading branch information
orsinium authored Oct 7, 2023
2 parents 3dfcdc9 + d7b9c11 commit 270cbe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake8_pylint/_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,6 @@ def __init__(

def run(self) -> Iterator[tuple[int, int, str, type]]:
reporter = Reporter()
Run([self.filename], reporter=reporter, do_exit=False)
Run([self.filename], reporter=reporter, exit=False)
for error in reporter.errors:
yield error['row'], error['col'], error['text'], type(self)

0 comments on commit 270cbe1

Please sign in to comment.