Skip to content

Commit cb385b5

Browse files
fixed the formatting issues causing ci failure
1 parent ec23ecb commit cb385b5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sdk/core/azure-core/azure/core/pipeline/policies/_universal.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,9 @@ class HttpLoggingPolicy(
427427
REDACTED_PLACEHOLDER: str = "REDACTED"
428428
MULTI_RECORD_LOG: str = "AZURE_SDK_LOGGING_MULTIRECORD"
429429

430-
def __init__(self, logger: Optional[logging.Logger] = None, *, logging_level: int = logging.INFO, **kwargs: Any): # pylint: disable=unused-argument
430+
def __init__(
431+
self, logger: Optional[logging.Logger] = None, *, logging_level: int = logging.INFO, **kwargs: Any
432+
): # pylint: disable=unused-argument
431433
self.logger: logging.Logger = logger or logging.getLogger("azure.core.pipeline.policies.http_logging_policy")
432434
self.logging_level: int = logging_level
433435
self.allowed_query_params: Set[str] = set()

0 commit comments

Comments
 (0)