Skip to content

Commit

Permalink
revert black string processing
Browse files Browse the repository at this point in the history
  • Loading branch information
rafal-gorecki committed Jan 30, 2024
1 parent 5580e78 commit 5a5b949
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,12 @@ repos:
files: ^(?!.*compose)(?!.*ekf\.yaml$).*$
args: [--mapping, '2', --sequence, '4', --offset, '2', --width, '100']

# Please keep this version until --experimental-string-processing come back or will be available by default
- repo: https://github.com/psf/black
rev: 24.1.1
rev: 23.11.0
hooks:
- id: black
args: [--line-length=99]
args: [--line-length=99, --experimental-string-processing]

- repo: https://github.com/PyCQA/flake8
rev: 7.0.0
Expand Down
1 change: 0 additions & 1 deletion rosbot_gazebo/test/test_diff_drive_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

@launch_pytest.fixture
def generate_test_description():

rosbot_gazebo = get_package_share_directory("rosbot_gazebo")
simulation_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
Expand Down
1 change: 0 additions & 1 deletion rosbot_gazebo/test/test_mecanum_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

@launch_pytest.fixture
def generate_test_description():

rosbot_gazebo = get_package_share_directory("rosbot_gazebo")
simulation_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

@launch_pytest.fixture
def generate_test_description():

# IncludeLaunchDescription does not work with robots argument
simulation_launch = ExecuteProcess(
cmd=[
Expand Down
1 change: 0 additions & 1 deletion rosbot_gazebo/test/test_multirobot_mecanum_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@

@launch_pytest.fixture
def generate_test_description():

# IncludeLaunchDescription does not work with robots argument
simulation_launch = ExecuteProcess(
cmd=[
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@

@launch_pytest.fixture
def generate_test_description():

rosbot_gazebo = get_package_share_directory("rosbot_gazebo")
simulation_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
Expand Down
1 change: 0 additions & 1 deletion rosbot_gazebo/test/test_namespaced_mecanum_simulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@

@launch_pytest.fixture
def generate_test_description():

rosbot_gazebo = get_package_share_directory("rosbot_gazebo")
simulation_launch = IncludeLaunchDescription(
PythonLaunchDescriptionSource(
Expand Down

0 comments on commit 5a5b949

Please sign in to comment.