From f081afa7eec84ac97de2bb895c9fa17156da5a78 Mon Sep 17 00:00:00 2001 From: Ailin Yu Date: Mon, 16 Sep 2024 14:52:28 -0700 Subject: [PATCH] chore: format --- python/examples/ingestion_with_csv/main.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/python/examples/ingestion_with_csv/main.py b/python/examples/ingestion_with_csv/main.py index 6490c8c3..b54241f0 100644 --- a/python/examples/ingestion_with_csv/main.py +++ b/python/examples/ingestion_with_csv/main.py @@ -98,11 +98,11 @@ def _load_telemetry_config( with use_sift_channel(sift_channel_config) as channel: # Create ingestion service using the telemetry config - ingestion_service = IngestionService( - channel=channel, - config=telemetry_config, - ) + ingestion_service = IngestionService( + channel=channel, + config=telemetry_config, + ) # Create a new run as part of this ingestion - run_name = f"{telemetry_config.ingestion_client_key}-{uuid.uuid4()}" - ingestion_service.attach_run(channel, run_name, "example csv ingestion") + run_name = f"{telemetry_config.ingestion_client_key}-{uuid.uuid4()}" + ingestion_service.attach_run(channel, run_name, "example csv ingestion")