From c4af526daf20ef2dfec5c24d0d73dad40816fc30 Mon Sep 17 00:00:00 2001 From: chenke Date: Mon, 18 Mar 2019 10:58:21 +0800 Subject: [PATCH] Add the module used but not be imported The module "inspect" was used in method _handle_patch(), Line 50 but not be imported. Change-Id: I5b5573d8d4e8dde241bd248b36c803178f18871b --- cyborg/api/controllers/base.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cyborg/api/controllers/base.py b/cyborg/api/controllers/base.py index f029203e..7a1304be 100644 --- a/cyborg/api/controllers/base.py +++ b/cyborg/api/controllers/base.py @@ -15,10 +15,11 @@ import datetime +import inspect import pecan +from pecan import rest import wsme from wsme import types as wtypes -from pecan import rest class APIBase(wtypes.Base):