From fe731ae6dab4dbd89b138fc8cf85b0fe358c5784 Mon Sep 17 00:00:00 2001 From: Ailin Yu Date: Thu, 24 Oct 2024 11:40:11 -0700 Subject: [PATCH] chore: don't alias channel_fqn --- python/lib/sift_py/ingestion/config/telemetry.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/lib/sift_py/ingestion/config/telemetry.py b/python/lib/sift_py/ingestion/config/telemetry.py index ee451b87..653ecc68 100644 --- a/python/lib/sift_py/ingestion/config/telemetry.py +++ b/python/lib/sift_py/ingestion/config/telemetry.py @@ -5,7 +5,7 @@ from typing_extensions import Self -from sift_py._internal.channel import channel_fqn as _channel_fqn +from sift_py._internal.channel import channel_fqn from sift_py.ingestion.channel import ( ChannelBitFieldElement, ChannelConfig, @@ -216,7 +216,7 @@ def _from_yaml( channel_references.append( { "channel_reference": ref, - "channel_identifier": _channel_fqn(name, component), + "channel_identifier": channel_fqn(name, component), } )