arg_spec - remove unused imports (#74354)
This commit is contained in:
parent
4c79dd16be
commit
7625c8f3d3
2 changed files with 2 additions and 8 deletions
2
changelogs/fragments/arg_spec-remove-unused-imports.yml
Normal file
2
changelogs/fragments/arg_spec-remove-unused-imports.yml
Normal file
|
@ -0,0 +1,2 @@
|
|||
bugfixes:
|
||||
- arg_spec - remove unused imports
|
|
@ -26,10 +26,6 @@ from ansible.module_utils.common.warnings import deprecate, warn
|
|||
from ansible.module_utils.common.validation import (
|
||||
check_mutually_exclusive,
|
||||
check_required_arguments,
|
||||
check_required_by,
|
||||
check_required_if,
|
||||
check_required_one_of,
|
||||
check_required_together,
|
||||
)
|
||||
|
||||
from ansible.module_utils.errors import (
|
||||
|
@ -37,12 +33,8 @@ from ansible.module_utils.errors import (
|
|||
AnsibleValidationErrorMultiple,
|
||||
MutuallyExclusiveError,
|
||||
NoLogError,
|
||||
RequiredByError,
|
||||
RequiredDefaultError,
|
||||
RequiredError,
|
||||
RequiredIfError,
|
||||
RequiredOneOfError,
|
||||
RequiredTogetherError,
|
||||
UnsupportedError,
|
||||
)
|
||||
|
||||
|
|
Loading…
Reference in a new issue