diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-07 16:26:46 +0900 |
---|---|---|
committer | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-03-16 16:14:20 +0900 |
commit | 03ba90ac0dd6ecea6c1e2b24956bcc73962d1ef7 (patch) | |
tree | d01d11e8808c17ed8e9b7437bbfede03845d82ea /test/lib/bird.py | |
parent | cd26f8c729b326623ad72eac5d136c03e01dfbd0 (diff) |
test/lib: pep8 and pylint improvements
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'test/lib/bird.py')
-rw-r--r-- | test/lib/bird.py | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/test/lib/bird.py b/test/lib/bird.py index 598276bc..c728d986 100644 --- a/test/lib/bird.py +++ b/test/lib/bird.py @@ -13,7 +13,20 @@ # See the License for the specific language governing permissions and # limitations under the License. -from base import * +from __future__ import absolute_import + +import time + +from fabric import colors +from fabric.api import local +from fabric.utils import indent + +from lib.base import ( + BGPContainer, + CmdBuffer, + try_several_times, +) + class BirdContainer(BGPContainer): |