Skip to content

Commit c4aea85

Browse files
authored
Update copyright holder in LICENSE file (#148)
* Update copyright holder in LICENSE file * Fix integration tests for ROS2 * lint
1 parent f88ddcb commit c4aea85

2 files changed

Lines changed: 20 additions & 18 deletions

File tree

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Gramazio Kohler Research
3+
Copyright (c) 2018 ETH Zurich, Gramazio Kohler Research
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

docker/ros2/integration-tests-launch.py

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,22 @@
33
from launch_ros.substitutions import FindPackageShare
44
from launch.actions import ExecuteProcess, IncludeLaunchDescription
55

6-
def generate_launch_description():
7-
return LaunchDescription([
8-
# Start rosbridge_websocket
9-
IncludeLaunchDescription(
10-
PathJoinSubstitution([
11-
FindPackageShare('rosbridge_server'),
12-
'launch',
13-
'rosbridge_websocket_launch.xml'
14-
])
15-
),
166

17-
# Start fibonacci_server.py with python3
18-
ExecuteProcess(
19-
cmd=['python3', "/fibonacci_server.py"],
20-
output='screen'
21-
)
22-
])
7+
def generate_launch_description():
8+
return LaunchDescription(
9+
[
10+
# Start rosbridge_websocket
11+
IncludeLaunchDescription(
12+
PathJoinSubstitution(
13+
[
14+
FindPackageShare("rosbridge_server"),
15+
"launch",
16+
"rosbridge_websocket_launch.xml",
17+
]
18+
),
19+
launch_arguments={"delay_between_messages": "0.0"}.items(),
20+
),
21+
# Start fibonacci_server.py with python3
22+
ExecuteProcess(cmd=["python3", "/fibonacci_server.py"], output="screen"),
23+
]
24+
)

0 commit comments

Comments
 (0)