From e74c1e2d121d5b52b26471d2c159dcc15ccab660 Mon Sep 17 00:00:00 2001 From: Reagan Date: Thu, 17 Oct 2024 16:27:58 -0700 Subject: [PATCH] ruff format --- hypothesis-python/src/hypothesis/stateful.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hypothesis-python/src/hypothesis/stateful.py b/hypothesis-python/src/hypothesis/stateful.py index 77bd2ed668..f548cbb9c1 100644 --- a/hypothesis-python/src/hypothesis/stateful.py +++ b/hypothesis-python/src/hypothesis/stateful.py @@ -549,7 +549,8 @@ def do_draw(self, data): if not self.draw_references: return self.get_transformed_value(reference) - # we need both reference and the value itself to pretty-print deterministically and maintain any transformations that is bundle-specific + # we need both reference and the value itself to pretty-print deterministically + # and maintain any transformations that is bundle-specific return VarReferenceMapping(reference, self.get_transformed_value(reference)) def filter(self, condition):