Skip to content

Commit

Permalink
code review suggestion - use __qualname__
Browse files Browse the repository at this point in the history
Co-authored-by: Emídio Neto <9735060+emdneto@users.noreply.github.com>
  • Loading branch information
jgibo and emdneto authored Aug 14, 2024
1 parent 252feba commit 5a841a7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _finish_tracing_callback(

exc = future.exception()
if exc:
description = f"{type(exc).__name__}: {exc}"
description = f"{type(exc).__qualname__}: {exc}"
if isinstance(exc, HTTPError):
response = exc.response
status_code = exc.code
Expand Down

0 comments on commit 5a841a7

Please sign in to comment.