From 874440ca75c16dcf2c810c82cbd4048a5a9c07f2 Mon Sep 17 00:00:00 2001 From: Xiaodong Ye Date: Wed, 17 May 2023 08:49:00 +0800 Subject: [PATCH] Remove unused local variable: slash_locations Signed-off-by: Xiaodong Ye --- deploy/mlflow-triton-plugin/mlflow_triton/config.py | 1 - 1 file changed, 1 deletion(-) diff --git a/deploy/mlflow-triton-plugin/mlflow_triton/config.py b/deploy/mlflow-triton-plugin/mlflow_triton/config.py index 2b3c5e83be..d4fce37cfa 100644 --- a/deploy/mlflow-triton-plugin/mlflow_triton/config.py +++ b/deploy/mlflow-triton-plugin/mlflow_triton/config.py @@ -124,7 +124,6 @@ def clean_path(self, s3_path): # Remove extra internal slashes true_path = path[ltrim_length:rtrim_length + 1] - slash_locations = [] previous_slash = False for i in range(len(true_path)): if true_path[i] == '/':