From 1e6b3db4b397686784d8aa6e09bffa95f802a815 Mon Sep 17 00:00:00 2001 From: Scott K Logan Date: Mon, 10 Jun 2024 14:03:30 -0500 Subject: [PATCH] Appease linter --- colcon_core/python_install_path.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/colcon_core/python_install_path.py b/colcon_core/python_install_path.py index ca439a9c5..bf9afc1ea 100644 --- a/colcon_core/python_install_path.py +++ b/colcon_core/python_install_path.py @@ -21,8 +21,8 @@ def get_python_install_path(name, vars_=()): install_base = kwargs['vars'].get('base', sysconfig.get_config_var('base')) if install_base != sysconfig.get_config_var('base'): - # If we are not actually installing to the default location, the default - # path scheme may be inadequate. Check if we need to override. + # If we are not actually installing to the default location, the + # default path scheme may be inadequate. Check if we need to override. schemes = sysconfig.get_scheme_names() if 'deb_system' in schemes or 'osx_framework_library' in schemes: # Avoid deb_system because it requires using --install-layout deb