mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Remove uses of assert in production code (#32079)
* Remove uses of assert in production code * Fix assertion * Add code smell test for assertions, currently limited to lib/ansible * Fix assertion * Add docs for no-assert * Remove new assert from enos * Fix assert in module_utils.connection
This commit is contained in:
parent
464ded80f5
commit
99d4f5bab4
38 changed files with 195 additions and 89 deletions
|
@ -285,7 +285,8 @@ def check_dp_status(client, dp_id, status):
|
|||
:returns: True or False
|
||||
|
||||
"""
|
||||
assert isinstance(status, list)
|
||||
if not isinstance(status, list):
|
||||
raise AssertionError()
|
||||
if pipeline_field(client, dp_id, field="@pipelineState") in status:
|
||||
return True
|
||||
else:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue