From 67f075df64b3a4c42c0b952c46f82a1cbe995394 Mon Sep 17 00:00:00 2001 From: John Gerrard Holland Date: Wed, 29 Nov 2023 12:03:24 -0500 Subject: [PATCH] chore: add comma --- tests/test_strategies.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/test_strategies.py b/tests/test_strategies.py index 62e95771..808c55b1 100644 --- a/tests/test_strategies.py +++ b/tests/test_strategies.py @@ -461,7 +461,11 @@ def standard_state_dataclass_strategy(draw): return s -@settings(suppress_health_check={HealthCheck.too_slow}) +@settings( + suppress_health_check={ + HealthCheck.too_slow, + } +) @given(standard_state_dataclass_strategy()) def test_standard_state_dataclass_strategy_creation(o): assert o