diff options
author | Ross Brattain <ross.b.brattain@intel.com> | 2017-03-15 19:47:24 -0700 |
---|---|---|
committer | Ross Brattain <ross.b.brattain@intel.com> | 2017-03-23 14:54:12 -0700 |
commit | 2e6b9b091c9bf888a05eb0a1ddff5e6f273400df (patch) | |
tree | 8c263ec7473f9fad7fd2b5805b1a1816ca2a24bb /tests/unit | |
parent | 4ea6acb22260ba5076857136c95a6f9223c9f7c5 (diff) |
model: pylint fixes
remove redundnant parens
replace type with isinstance
fix import order
Change-Id: I0407cbbf6993290f392f17c398827603b5bc1ebd
Signed-off-by: Ross Brattain <ross.b.brattain@intel.com>
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/benchmark/contexts/test_model.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/benchmark/contexts/test_model.py b/tests/unit/benchmark/contexts/test_model.py index a4b7d81ef..6ae4e6dac 100644 --- a/tests/unit/benchmark/contexts/test_model.py +++ b/tests/unit/benchmark/contexts/test_model.py @@ -12,8 +12,8 @@ # Unittest for yardstick.benchmark.contexts.model from __future__ import absolute_import -import mock import unittest +import mock from yardstick.benchmark.contexts import model |