summaryrefslogtreecommitdiff
path: root/ironic_python_agent/api
diff options
context:
space:
mode:
Diffstat (limited to 'ironic_python_agent/api')
-rw-r--r--ironic_python_agent/api/controllers/v1/base.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/ironic_python_agent/api/controllers/v1/base.py b/ironic_python_agent/api/controllers/v1/base.py
index b221124d..c3644efa 100644
--- a/ironic_python_agent/api/controllers/v1/base.py
+++ b/ironic_python_agent/api/controllers/v1/base.py
@@ -12,7 +12,6 @@
# License for the specific language governing permissions and limitations
# under the License.
-import six
from wsme import types as wtypes
@@ -67,7 +66,7 @@ class MultiType(wtypes.UserType):
type=self.types, value=type(value)))
-json_type = MultiType(list, dict, six.integer_types, wtypes.text)
+json_type = MultiType(list, dict, int, wtypes.text)
class APIBase(wtypes.Base):