From 9ced934b64db0ae75ade505907115178d2d3ca7e Mon Sep 17 00:00:00 2001 From: Libba Lawrence Date: Thu, 26 Jan 2023 08:47:27 -0800 Subject: [PATCH] [pylint] fix warning format (#5232) * fix comma * fix comma * whitespace --- .../pylint_guidelines_checker.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/pylint-extensions/pylint-guidelines-checker/pylint_guidelines_checker.py b/tools/pylint-extensions/pylint-guidelines-checker/pylint_guidelines_checker.py index c9fbc4f418c..8b62ec98d7d 100644 --- a/tools/pylint-extensions/pylint-guidelines-checker/pylint_guidelines_checker.py +++ b/tools/pylint-extensions/pylint-guidelines-checker/pylint_guidelines_checker.py @@ -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.",