Skip to content

Commit 2ed6c09

Browse files
sanity fixes
1 parent 2c39aab commit 2ed6c09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugins/module_utils/cmci.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__metaclass__ = type
88

9-
from ansible.module_utils.basic import AnsibleModule, missing_required_lib,\
9+
from ansible.module_utils.basic import AnsibleModule, missing_required_lib, \
1010
env_fallback
1111
from typing import Optional, Dict, Any, List, Tuple
1212
from collections import OrderedDict

tests/unit/helpers/cmci_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ def create_feedback_response(errors): # type: (str, List) -> OrderedDict
284284

285285

286286
def get_error_detail(error_type, error_details): # type: (str, List) -> Tuple[str, List[OrderedDict]]
287-
return error_type,\
287+
return error_type, \
288288
[
289289
OrderedDict(
290290
[('@' + k, v) for k, v in error.items()]

0 commit comments

Comments
 (0)