diff options
Diffstat (limited to 'ryu/services/protocols/bgp/operator/commands/show/rib.py')
-rw-r--r-- | ryu/services/protocols/bgp/operator/commands/show/rib.py | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/ryu/services/protocols/bgp/operator/commands/show/rib.py b/ryu/services/protocols/bgp/operator/commands/show/rib.py index 05380455..022e35cd 100644 --- a/ryu/services/protocols/bgp/operator/commands/show/rib.py +++ b/ryu/services/protocols/bgp/operator/commands/show/rib.py @@ -1,15 +1,13 @@ from __future__ import absolute_import -from .route_formatter_mixin import RouteFormatterMixin - +from ryu.services.protocols.bgp.base import ActivityException from ryu.services.protocols.bgp.operator.command import Command from ryu.services.protocols.bgp.operator.command import CommandsResponse from ryu.services.protocols.bgp.operator.command import STATUS_ERROR from ryu.services.protocols.bgp.operator.command import STATUS_OK - -from ryu.services.protocols.bgp.base import ActivityException -from ryu.services.protocols.bgp.operator.commands.responses import \ - WrongParamResp +from ryu.services.protocols.bgp.operator.commands.responses import ( + WrongParamResp) +from .route_formatter_mixin import RouteFormatterMixin class RibBase(Command, RouteFormatterMixin): |