diff --git a/hypothesis-python/docs/settings.rst b/hypothesis-python/docs/settings.rst index f640d0dbd6..d73def991d 100644 --- a/hypothesis-python/docs/settings.rst +++ b/hypothesis-python/docs/settings.rst @@ -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: []