From 72b06f8c101e214fd52631b4447dc47db0a2e233 Mon Sep 17 00:00:00 2001 From: phlax Date: Thu, 24 Oct 2024 19:18:45 +0100 Subject: [PATCH] tools/python: Remove unused loading of old py macro (#36820) Signed-off-by: Ryan Northey --- tools/base/envoy_python.bzl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/base/envoy_python.bzl b/tools/base/envoy_python.bzl index 102a2722a313..f27a37243779 100644 --- a/tools/base/envoy_python.bzl +++ b/tools/base/envoy_python.bzl @@ -1,7 +1,6 @@ load("@aspect_bazel_lib//lib:jq.bzl", "jq") load("@aspect_bazel_lib//lib:yq.bzl", "yq") -load("@base_pip3//:requirements.bzl", "requirement", base_entry_point = "entry_point") -load("@envoy_toolshed//py:macros.bzl", "entry_point") +load("@base_pip3//:requirements.bzl", "requirement") load("@rules_python//python:defs.bzl", "py_binary", "py_library") load("@rules_python//python/entry_points:py_console_script_binary.bzl", "py_console_script_binary")