Skip to content

Commit 5000421

Browse files
committed
Fix format
1 parent cf2c60c commit 5000421

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

sdk/monitor/azure-monitor-opentelemetry-exporter/azure/monitor/opentelemetry/exporter/_connection_string_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
INSTRUMENTATION_KEY = "instrumentationkey"
1010
# cspell:disable-next-line
1111
AAD_AUDIENCE = "aadaudience"
12-
APPLICATION_ID = "applicationid" # cspell:disable-line
12+
APPLICATION_ID = "applicationid" # cspell:disable-line
1313

1414
# Validate UUID format
1515
# Specs taken from https://tools.ietf.org/html/rfc4122

sdk/monitor/azure-monitor-opentelemetry-exporter/azure/monitor/opentelemetry/exporter/_utils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -433,6 +433,7 @@ def get_compute_type():
433433
def _get_sha256_hash(input_str: str) -> str:
434434
return hashlib.sha256(input_str.encode("utf-8")).hexdigest()
435435

436+
436437
def _get_application_id(connection_string: Optional[str]) -> Optional[str]:
437438
parsed_connection_string = ConnectionStringParser(connection_string)
438439
return parsed_connection_string.application_id

0 commit comments

Comments
 (0)