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

Adding Executable description class #454

Merged
merged 16 commits into from
Oct 29, 2021
2 changes: 2 additions & 0 deletions launch/launch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

from . import actions
from . import conditions
from . import descriptions
from . import events
from . import frontend
from . import logging
Expand All @@ -40,6 +41,7 @@
__all__ = [
'actions',
'conditions',
'descriptions',
'events',
'frontend',
'logging',
Expand Down
2 changes: 2 additions & 0 deletions launch/launch/actions/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
from .declare_launch_argument import DeclareLaunchArgument
from .append_environment_variable import AppendEnvironmentVariable # noqa: I100
from .emit_event import EmitEvent
from .execute_local import ExecuteLocal
from .execute_process import ExecuteProcess
from .group_action import GroupAction
from .include_launch_description import IncludeLaunchDescription
Expand All @@ -39,6 +40,7 @@
'AppendEnvironmentVariable',
'DeclareLaunchArgument',
'EmitEvent',
'ExecuteLocal',
'ExecuteProcess',
'GroupAction',
'IncludeLaunchDescription',
Expand Down