diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 37cfe77..304ae26 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,16 @@ repos: rev: v14.0.0 hooks: - id: clang-format +- repo: https://github.com/psf/black + rev: 23.1.0 + hooks: + - id: black - repo: https://github.com/ahans/cmake-format-precommit rev: 8e52fb6506f169dddfaa87f88600d765fca48386 hooks: - id: cmake-format +- repo: https://github.com/pycqa/isort + rev: 5.12.0 + hooks: + - id: isort + args: ["--profile", "black", "--filter-files"] diff --git a/ros/launch/offline_node.launch.py b/ros/launch/offline_node.launch.py index 371d8bb..bd66551 100644 --- a/ros/launch/offline_node.launch.py +++ b/ros/launch/offline_node.launch.py @@ -4,14 +4,13 @@ import launch from ament_index_python.packages import get_package_share_directory from launch import LaunchDescription -from launch.actions import OpaqueFunction +from launch.actions import DeclareLaunchArgument, OpaqueFunction from launch.conditions import IfCondition from launch.launch_description_sources import ( get_launch_description_from_python_launch_file, ) from launch.substitutions import LaunchConfiguration from launch_ros.actions import Node -from launch.actions import DeclareLaunchArgument def _generate_launch_description(context: launch.LaunchContext, *args, **kwargs):