From eeaa0ba57e1ea712c39192b55006a389af49d616 Mon Sep 17 00:00:00 2001 From: yousukseung <85715732+yousukseung@users.noreply.github.com> Date: Mon, 3 Nov 2025 23:46:35 +0000 Subject: [PATCH] Automated change: Fix sanity tests --- src/python/grpcio_sleuth/setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/python/grpcio_sleuth/setup.py b/src/python/grpcio_sleuth/setup.py index d776d8968e36f..4b85843345460 100644 --- a/src/python/grpcio_sleuth/setup.py +++ b/src/python/grpcio_sleuth/setup.py @@ -18,17 +18,16 @@ import subprocess import sys - # Manually insert the source directory into the Python path for local module # imports to succeed sys.path.insert(0, os.path.abspath(".")) -import python_version import setuptools from setuptools import Extension from setuptools.command.build_ext import build_ext import grpc_version +import python_version _PACKAGE_PATH = os.path.realpath(os.path.dirname(__file__)) _README_PATH = os.path.join(_PACKAGE_PATH, "README.rst")