Skip to content

Commit 7246a07

Browse files
committed
taas: Use custom command classes
In change I53d9058273748ecd4d4eecec5f7291d5f38ce5ab we added custom Command classes for typing purposes. However, the Tap-as-a-Service code merged around the same time and was missed. Correct this. Change-Id: I3a9fe20b5b8eb54708644527538f27396f29b476 Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
1 parent 8dbb712 commit 7246a07

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

openstackclient/network/v2/taas/tap_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@
1616

1717
from osc_lib.cli import format_columns
1818
from osc_lib.cli import identity as identity_utils
19-
from osc_lib.command import command
2019
from osc_lib import exceptions
2120
from osc_lib import utils as osc_utils
2221
from osc_lib.utils import columns as column_util
2322

23+
from openstackclient import command
2424
from openstackclient.i18n import _
2525
from openstackclient.identity import common
2626
from openstackclient.network.v2.taas import tap_service

openstackclient/network/v2/taas/tap_mirror.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,11 @@
1313
import logging
1414

1515
from osc_lib.cli import identity as identity_utils
16-
from osc_lib.command import command
1716
from osc_lib import exceptions
1817
from osc_lib import utils as osc_utils
1918
from osc_lib.utils import columns as column_util
2019

20+
from openstackclient import command
2121
from openstackclient.i18n import _
2222
from openstackclient.identity import common
2323
from openstackclient.network.v2 import port as osc_port

openstackclient/network/v2/taas/tap_service.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@
1515
import logging
1616

1717
from osc_lib.cli import identity as identity_utils
18-
from osc_lib.command import command
1918
from osc_lib import exceptions
2019
from osc_lib import utils as osc_utils
2120
from osc_lib.utils import columns as column_util
2221

22+
from openstackclient import command
2323
from openstackclient.i18n import _
2424
from openstackclient.identity import common
2525

0 commit comments

Comments
 (0)