Skip to content

Commit

Permalink
[pylint] fix warning format (#5232)
Browse files Browse the repository at this point in the history
* fix comma

* fix comma

* whitespace
  • Loading branch information
l0lawrence authored Jan 26, 2023
1 parent de8165d commit 9ced934
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -324,15 +324,15 @@ class ClientMethodsHaveTracingDecorators(BaseChecker):
priority = -1
msgs = {
"C4723": (
"Client method is missing the distributed tracing decorator - `distributed_trace`.",
" Methods that make network calls should have distributed tracing. See details:",
"Client method is missing the distributed tracing decorator - `distributed_trace`."
" Methods that make network calls should have distributed tracing. See details:"
" https://azure.github.io/azure-sdk/python_implementation.html#distributed-tracing",
"client-method-missing-tracing-decorator",
"Client method should support distributed tracing.",
),
"C4724": (
"Client async method is missing the distributed tracing decorator - `distributed_trace_async`.",
" Methods that make network calls should have distributed tracing.",
"Client async method is missing the distributed tracing decorator - `distributed_trace_async`."
" Methods that make network calls should have distributed tracing."
" See details: https://azure.github.io/azure-sdk/python_implementation.html#distributed-tracing",
"client-method-missing-tracing-decorator-async",
"Client method should support distributed tracing.",
Expand Down

0 comments on commit 9ced934

Please sign in to comment.