From 7f83c6c5c8adbe85e52fc66e19bc2e8ddce0fd9e Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 15 Dec 2015 18:57:14 +0100 Subject: [PATCH] pylint: Disable no-member for hypothesis.Settings. hypothesis.Settings.default is probably created dynamically. --- tests/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/conftest.py b/tests/conftest.py index fae1e455a..ffc51711a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -44,7 +44,7 @@ import xvfbwrapper # Set hypothesis settings -hypothesis.Settings.default.strict = True +hypothesis.Settings.default.strict = True # pylint: disable=no-member def _apply_platform_markers(item):