Description
In components/clp-package-utils/clp_package_utils/general.py, the generate_container_start_cmd function defines the PYTHONPATH environment variable twice:
- Directly in the
container_start_cmd array: "-e", f"PYTHONPATH={clp_site_packages_dir}"
- In the
env_vars dictionary, which is then iterated to add environment variables to the command
This duplication occurred during branch syncs and should be cleaned up. While not harmful to correctness, only one definition is necessary.
References
Description
In
components/clp-package-utils/clp_package_utils/general.py, thegenerate_container_start_cmdfunction defines the PYTHONPATH environment variable twice:container_start_cmdarray:"-e", f"PYTHONPATH={clp_site_packages_dir}"env_varsdictionary, which is then iterated to add environment variables to the commandThis duplication occurred during branch syncs and should be cleaned up. While not harmful to correctness, only one definition is necessary.
References