Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
rsokl authored Jan 8, 2023
1 parent 0f749bc commit e1deea8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hypothesis-python/src/hypothesis/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,9 @@ def xfail(
condition: bool = True,
*,
reason: str = "",
raises: Union[Type[BaseException], Tuple[Type[BaseException], ...]] = BaseException,
raises: Union[
Type[BaseException], Tuple[Type[BaseException], ...]
] = BaseException,
) -> "example":
"""Mark this example as an expected failure, like pytest.mark.xfail().
Expand Down

0 comments on commit e1deea8

Please sign in to comment.