From 4c377c8a66eabd7f98b990061d941e6320ab3cda Mon Sep 17 00:00:00 2001 From: Dan Allan Date: Fri, 17 May 2024 09:42:12 -0400 Subject: [PATCH] whitespace --- tiled/client/context.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tiled/client/context.py b/tiled/client/context.py index 0241fc279..a5ae197d9 100644 --- a/tiled/client/context.py +++ b/tiled/client/context.py @@ -172,7 +172,9 @@ def __repr__(self): ",".join(f"'{identity['id']}'" for identity in whoami["identities"]) ) if self.api_key is not None: - auth_info.append(f"with API key '{self.api_key[:min(len(self.api_key)//2, 8)]}...'") + auth_info.append( + f"with API key '{self.api_key[:min(len(self.api_key)//2, 8)]}...'" + ) auth_repr = " ".join(auth_info) return f"<{type(self).__name__} {auth_repr}>"