Skip to content

Commit

Permalink
Arranged int incorrect order of "import"
Browse files Browse the repository at this point in the history
  • Loading branch information
KuraZuzu committed Oct 23, 2024
1 parent 77c58cd commit 90f826d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 2 additions & 3 deletions launch/display.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,12 @@


from ament_index_python.packages import get_package_share_directory
from raspimouse_description.robot_description_loader import RobotDescriptionLoader
from launch import LaunchDescription
from launch.actions import DeclareLaunchArgument
from launch.conditions import IfCondition
from launch_ros.actions import Node
from launch_ros.actions import PushRosNamespace
from launch_ros.actions import Node, PushRosNamespace
from launch.substitutions import LaunchConfiguration
from raspimouse_description.robot_description_loader import RobotDescriptionLoader


def generate_launch_description():
Expand Down
8 changes: 5 additions & 3 deletions test/test_robot_description_loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,13 @@
# IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

from raspimouse_description.robot_description_loader import RobotDescriptionLoader
from launch.launch_context import LaunchContext
import pytest
import math

import pytest
from launch.launch_context import LaunchContext
from raspimouse_description.robot_description_loader import \
RobotDescriptionLoader


def exec_load(loader):
# Command substitutionの実行方法はCommandのテストを参考にした
Expand Down

0 comments on commit 90f826d

Please sign in to comment.