Skip to content

Commit

Permalink
Explicitly return None
Browse files Browse the repository at this point in the history
as suggested in #201 (comment)
  • Loading branch information
pllim authored Jun 8, 2023
1 parent 93c6407 commit 7b605ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pytest_doctestplus/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,8 @@ def get_list_opt(name):
self._ignore_paths.append(path)
break

# None = Let other plugins decide the outcome.
# Let other plugins decide the outcome.
return None

def pytest_collect_file(self, path, parent):
"""Implements an enhanced version of the doctest module from py.test
Expand Down

0 comments on commit 7b605ef

Please sign in to comment.