From 8046a19923132a20b6ee6c97a9981cfa9218375b Mon Sep 17 00:00:00 2001 From: Eran Kampf Date: Mon, 8 Apr 2019 14:05:49 -0700 Subject: [PATCH] black code formatting --- graphene/types/uuid.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/graphene/types/uuid.py b/graphene/types/uuid.py index b6d7216a..b9687e1e 100644 --- a/graphene/types/uuid.py +++ b/graphene/types/uuid.py @@ -15,7 +15,9 @@ class UUID(Scalar): if isinstance(uuid, six.string_types): uuid = _UUID(uuid) - assert isinstance(uuid, _UUID), "Expected UUID instance, received {}".format(uuid) + assert isinstance(uuid, _UUID), "Expected UUID instance, received {}".format( + uuid + ) return str(uuid) @staticmethod