mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
remove noqa exceptions (#6928)
* remove noqa exceptions * add changelog frag * review from PR
This commit is contained in:
parent
24feb1dd10
commit
70503411ee
6 changed files with 10 additions and 38 deletions
6
changelogs/fragments/6928-noqa-comments.yml
Normal file
6
changelogs/fragments/6928-noqa-comments.yml
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
minor_changes:
|
||||||
|
- gitlab_project_variable - minor refactor removing unnecessary code statements (https://github.com/ansible-collections/community.general/pull/6928).
|
||||||
|
- pubnub_blocks - minor refactor removing unnecessary code statements (https://github.com/ansible-collections/community.general/pull/6928).
|
||||||
|
- scaleway_security_group_rule - minor refactor removing unnecessary code statements (https://github.com/ansible-collections/community.general/pull/6928).
|
||||||
|
- xenserver_guest_info - minor refactor removing unnecessary code statements (https://github.com/ansible-collections/community.general/pull/6928).
|
||||||
|
- xenserver_guest_powerstate - minor refactor removing unnecessary code statements (https://github.com/ansible-collections/community.general/pull/6928).
|
|
@ -181,20 +181,13 @@ project_variable:
|
||||||
sample: ['ACCESS_KEY_ID', 'SECRET_ACCESS_KEY']
|
sample: ['ACCESS_KEY_ID', 'SECRET_ACCESS_KEY']
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import traceback
|
|
||||||
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
|
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
|
||||||
from ansible.module_utils.api import basic_auth_argument_spec
|
from ansible.module_utils.api import basic_auth_argument_spec
|
||||||
|
|
||||||
GITLAB_IMP_ERR = None
|
|
||||||
try:
|
|
||||||
import gitlab # noqa: F401, pylint: disable=unused-import
|
|
||||||
HAS_GITLAB_PACKAGE = True
|
|
||||||
except Exception:
|
|
||||||
GITLAB_IMP_ERR = traceback.format_exc()
|
|
||||||
HAS_GITLAB_PACKAGE = False
|
|
||||||
|
|
||||||
from ansible_collections.community.general.plugins.module_utils.gitlab import (
|
from ansible_collections.community.general.plugins.module_utils.gitlab import (
|
||||||
auth_argument_spec, gitlab_authentication, ensure_gitlab_package, filter_returned_variables, vars_to_variables
|
auth_argument_spec, gitlab_authentication, ensure_gitlab_package, filter_returned_variables, vars_to_variables,
|
||||||
|
HAS_GITLAB_PACKAGE, GITLAB_IMP_ERR
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -243,7 +243,7 @@ import os
|
||||||
|
|
||||||
try:
|
try:
|
||||||
# Import PubNub BLOCKS client.
|
# Import PubNub BLOCKS client.
|
||||||
from pubnub_blocks_client import User, Account, Owner, Application, Keyset # noqa: F401, pylint: disable=unused-import
|
from pubnub_blocks_client import User
|
||||||
from pubnub_blocks_client import Block, EventHandler
|
from pubnub_blocks_client import Block, EventHandler
|
||||||
from pubnub_blocks_client import exceptions
|
from pubnub_blocks_client import exceptions
|
||||||
HAS_PUBNUB_BLOCKS_CLIENT = True
|
HAS_PUBNUB_BLOCKS_CLIENT = True
|
||||||
|
|
|
@ -22,8 +22,6 @@ description:
|
||||||
extends_documentation_fragment:
|
extends_documentation_fragment:
|
||||||
- community.general.scaleway
|
- community.general.scaleway
|
||||||
- community.general.attributes
|
- community.general.attributes
|
||||||
requirements:
|
|
||||||
- ipaddress
|
|
||||||
|
|
||||||
attributes:
|
attributes:
|
||||||
check_mode:
|
check_mode:
|
||||||
|
@ -137,19 +135,8 @@ data:
|
||||||
}
|
}
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import traceback
|
|
||||||
|
|
||||||
from ansible_collections.community.general.plugins.module_utils.scaleway import SCALEWAY_LOCATION, scaleway_argument_spec, Scaleway, payload_from_object
|
from ansible_collections.community.general.plugins.module_utils.scaleway import SCALEWAY_LOCATION, scaleway_argument_spec, Scaleway, payload_from_object
|
||||||
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
|
|
||||||
try:
|
|
||||||
from ipaddress import ip_network # noqa: F401, pylint: disable=unused-import
|
|
||||||
except ImportError:
|
|
||||||
IPADDRESS_IMP_ERR = traceback.format_exc()
|
|
||||||
HAS_IPADDRESS = False
|
|
||||||
else:
|
|
||||||
IPADDRESS_IMP_ERR = None
|
|
||||||
HAS_IPADDRESS = True
|
|
||||||
|
|
||||||
|
|
||||||
def get_sgr_from_api(security_group_rules, security_group_rule):
|
def get_sgr_from_api(security_group_rules, security_group_rule):
|
||||||
|
@ -272,8 +259,6 @@ def main():
|
||||||
argument_spec=argument_spec,
|
argument_spec=argument_spec,
|
||||||
supports_check_mode=True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
if not HAS_IPADDRESS:
|
|
||||||
module.fail_json(msg=missing_required_lib('ipaddress'), exception=IPADDRESS_IMP_ERR)
|
|
||||||
|
|
||||||
core(module)
|
core(module)
|
||||||
|
|
||||||
|
|
|
@ -151,12 +151,6 @@ instance:
|
||||||
}
|
}
|
||||||
'''
|
'''
|
||||||
|
|
||||||
HAS_XENAPI = False
|
|
||||||
try:
|
|
||||||
import XenAPI # noqa: F401, pylint: disable=unused-import
|
|
||||||
HAS_XENAPI = True
|
|
||||||
except ImportError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible_collections.community.general.plugins.module_utils.xenserver import (xenserver_common_argument_spec, XenServerObject, get_object_ref,
|
from ansible_collections.community.general.plugins.module_utils.xenserver import (xenserver_common_argument_spec, XenServerObject, get_object_ref,
|
||||||
|
|
|
@ -177,12 +177,6 @@ instance:
|
||||||
}
|
}
|
||||||
'''
|
'''
|
||||||
|
|
||||||
HAS_XENAPI = False
|
|
||||||
try:
|
|
||||||
import XenAPI # noqa: F401, pylint: disable=unused-import
|
|
||||||
HAS_XENAPI = True
|
|
||||||
except ImportError:
|
|
||||||
pass
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible_collections.community.general.plugins.module_utils.xenserver import (xenserver_common_argument_spec, XenServerObject, get_object_ref,
|
from ansible_collections.community.general.plugins.module_utils.xenserver import (xenserver_common_argument_spec, XenServerObject, get_object_ref,
|
||||||
|
|
Loading…
Reference in a new issue