Skip to content

Commit

Permalink
Remove stray closing parenthesis (settings docs) (#2328)
Browse files Browse the repository at this point in the history
Remove stray closing parenthesis (settings docs)
  • Loading branch information
Zac-HD authored Jan 21, 2020
2 parents 825c1d5 + 3a70d3c commit f3f91e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypothesis-python/docs/settings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ up the verbosity setting.
>>> from hypothesis import find, settings, Verbosity
>>> from hypothesis.strategies import lists, integers
>>> @given(lists(integers())
... @settings(verbosity=Verbosity.verbose))
... @settings(verbosity=Verbosity.verbose)
... def f(x): assert not any(x)
... f()
Trying example: []
Expand Down

0 comments on commit f3f91e1

Please sign in to comment.