Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
danielballan committed May 17, 2024
1 parent 94c07dd commit 4c377c8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tiled/client/context.py
Original file line number Diff line number Diff line change
Expand Up @@ -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}>"

Expand Down

0 comments on commit 4c377c8

Please sign in to comment.