Skip to content

Commit

Permalink
chore: add copyright and newlines to pass ci
Browse files Browse the repository at this point in the history
Signed-off-by: David Wong <[email protected]>
  • Loading branch information
drwnz committed Sep 29, 2023
1 parent 4806b8e commit 9885cd3
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,28 @@
#!/usr/bin/env python3

# Copyright 2022 Tier IV, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.actions import OpaqueFunction
from launch.substitutions import LaunchConfiguration
from launch_ros.actions import Node
import json


def launch_setup(context, *args, **kwargs):
tf_file = LaunchConfiguration('tf_file_path').perform(context)
with open(tf_file, 'r') as f:
Expand Down Expand Up @@ -44,6 +62,7 @@ def launch_setup(context, *args, **kwargs):
])
]


def generate_launch_description():
return LaunchDescription(
[
Expand All @@ -52,3 +71,4 @@ def generate_launch_description():
]
)


0 comments on commit 9885cd3

Please sign in to comment.