Skip to content

Commit

Permalink
Use direct args instead of strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
Victor Lopez committed Oct 2, 2020
1 parent 4b19f25 commit 44377c1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ros2controlcli/ros2controlcli/verb/list.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ros2cli.node.strategy import add_arguments
from ros2cli.node.direct import add_arguments
from ros2cli.verb import VerbExtension
from ros2controlcli.api import add_controller_mgr_parsers, list_controllers

Expand Down
2 changes: 1 addition & 1 deletion ros2controlcli/ros2controlcli/verb/list_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ros2cli.node.strategy import add_arguments
from ros2cli.node.direct import add_arguments
from ros2cli.verb import VerbExtension
from ros2controlcli.api import add_controller_mgr_parsers, list_controller_types

Expand Down
2 changes: 1 addition & 1 deletion ros2controlcli/ros2controlcli/verb/load.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ros2cli.node.strategy import add_arguments
from ros2cli.node.direct import add_arguments
from ros2cli.verb import VerbExtension
from ros2controlcli.api import add_controller_mgr_parsers, ControllerNameCompleter, load_controller

Expand Down
2 changes: 1 addition & 1 deletion ros2controlcli/ros2controlcli/verb/reload_libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ros2cli.node.strategy import add_arguments
from ros2cli.node.direct import add_arguments
from ros2cli.verb import VerbExtension
from ros2controlcli.api import add_controller_mgr_parsers, reload_controller_libraries

Expand Down
2 changes: 1 addition & 1 deletion ros2controlcli/ros2controlcli/verb/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ros2cli.node.strategy import add_arguments
from ros2cli.node.direct import add_arguments
from ros2cli.verb import VerbExtension
from ros2controlcli.api import add_controller_mgr_parsers, LoadedControllerNameCompleter, \
switch_controllers
Expand Down
2 changes: 1 addition & 1 deletion ros2controlcli/ros2controlcli/verb/unload.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

from ros2cli.node.strategy import add_arguments
from ros2cli.node.direct import add_arguments
from ros2cli.verb import VerbExtension
from ros2controlcli.api import add_controller_mgr_parsers, LoadedControllerNameCompleter, \
unload_controller
Expand Down

0 comments on commit 44377c1

Please sign in to comment.