Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix new flake8 errors. #148

Merged
merged 1 commit into from
May 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions launch_ros/examples/lifecycle_pub_sub_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) # noqa
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..', 'launch')) # noqa

import launch
import launch.actions
import launch.events
import launch # noqa: E402
import launch.actions # noqa: E402
import launch.events # noqa: E402

import launch_ros.actions
import launch_ros.events
import launch_ros.events.lifecycle
import launch_ros.actions # noqa: E402
import launch_ros.events # noqa: E402
import launch_ros.events.lifecycle # noqa: E402

import lifecycle_msgs.msg
import lifecycle_msgs.msg # noqa: E402


def main(argv=sys.argv[1:]):
Expand Down
8 changes: 4 additions & 4 deletions launch_ros/examples/pub_sub_launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..')) # noqa
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', '..', 'launch')) # noqa

from launch import LaunchDescription
from launch import LaunchIntrospector
from launch import LaunchService
from launch import LaunchDescription # noqa: E402
from launch import LaunchIntrospector # noqa: E402
from launch import LaunchService # noqa: E402

import launch_ros.actions
import launch_ros.actions # noqa: E402


def main(argv=sys.argv[1:]):
Expand Down