From 0620d67e29bba833a9534135b1e8ffd58b6be75f Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Fri, 10 May 2024 00:39:38 +0530 Subject: [PATCH] remove unused variable --- src/packaged/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/packaged/__init__.py b/src/packaged/__init__.py index 0ae4a5d..5ec56d1 100644 --- a/src/packaged/__init__.py +++ b/src/packaged/__init__.py @@ -46,8 +46,6 @@ def create_package( source_directory: str, output_file: str, build_command: str, startup_command: str ) -> None: """Create the makeself executable, with the startup script in it.""" - package_name = os.path.basename(source_directory) - packaged_python_path = os.path.join(source_directory, ".packaged_python") if os.path.exists(packaged_python_path): shutil.rmtree(packaged_python_path)