mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-25 11:51:26 -07:00
Roadmap updates and docs fix. (#28287)
* Update on 2.4 roadmap progress. * Fix docs syntax for Python 2.
This commit is contained in:
parent
74e502fcc8
commit
b52aeeabfa
2 changed files with 6 additions and 6 deletions
|
@ -15,7 +15,7 @@ Examples of unfixed code:
|
|||
do_something(variable)
|
||||
|
||||
from ansible.module_utils.basic import *
|
||||
module = AnsibleModule([...])
|
||||
module = AnsibleModule()
|
||||
|
||||
Examples of fixed code:
|
||||
|
||||
|
@ -26,4 +26,4 @@ Examples of fixed code:
|
|||
do_something(variable)
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
module = AnsibleModule([...])
|
||||
module = AnsibleModule()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue