Skip to content

Commit

Permalink
Use exit instead of do_exit
Browse files Browse the repository at this point in the history
  • Loading branch information
rhugonnet committed Oct 9, 2023
1 parent 4ad71e8 commit f3729b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_raster.py
Original file line number Diff line number Diff line change
Expand Up @@ -2332,7 +2332,7 @@ def test_type_hints(self) -> None:

# Run pylint and parse the stdout as a string, only test
pylint_output = StringIO()
Run([temp_path], reporter=TextReporter(pylint_output), do_exit=False)
Run([temp_path], reporter=TextReporter(pylint_output), exit=False)

lint_string = pylint_output.getvalue()
print(lint_string) # Print the output for debug purposes
Expand Down

0 comments on commit f3729b6

Please sign in to comment.