Fix vnflcm msapi aai pep8 error 53/16553/1
authorfujinhua <fu.jinhua@zte.com.cn>
Fri, 29 Sep 2017 01:19:54 +0000 (09:19 +0800)
committerfujinhua <fu.jinhua@zte.com.cn>
Fri, 29 Sep 2017 01:19:54 +0000 (09:19 +0800)
Change-Id: Iedacc7c58f767d6f04052ff9a1b473715f693aec
Issue-Id: VFC-475
Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
lcm/lcm/pub/msapi/aai.py
lcm/lcm/pub/utils/values.py

index 150303c..77127e0 100644 (file)
@@ -29,13 +29,13 @@ def call_aai(resource, method, data=''):
         'X-TransactionId': str(uuid.uuid1())
     }
     return restcall.call_req(AAI_BASE_URL,
-                    AAI_USER,
-                    AAI_PASSWORD,
-                    restcall.rest_no_auth,
-                    resource,
-                    method,
-                    data,
-                    additional_headers)
+                             AAI_USER,
+                             AAI_PASSWORD,
+                             restcall.rest_no_auth,
+                             resource,
+                             method,
+                             data,
+                             additional_headers)
 
 
 def create_customer_aai(global_customer_id, data):
index b5c5e90..7bf3384 100644 (file)
@@ -12,6 +12,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
+
 def ignore_case_get(args, key, def_val=""):
     if not key:
         return def_val