1
0
mirror of https://github.com/ansible-collections/community.general.git synced 2025-08-08 13:42:08 +03:00

MH CmdModuleHelper: deprecation (#5370)

* MH CmdModuleHelper: deprecation

* add changelog fragment

* add deprecation comments in many parts of the code
This commit is contained in:
Alexei Znamensky
2022-10-24 03:34:04 +13:00
committed by GitHub
parent f5ca03047d
commit 91cac4c816
3 changed files with 29 additions and 0 deletions

View File

@@ -84,8 +84,16 @@ class StateModuleHelper(StateMixin, ModuleHelper):
class CmdModuleHelper(CmdMixin, ModuleHelper):
"""
THIS CLASS IS BEING DEPRECATED.
See the deprecation notice in ``CmdMixin.__init__()``.
"""
pass
class CmdStateModuleHelper(CmdMixin, StateMixin, ModuleHelper):
"""
THIS CLASS IS BEING DEPRECATED.
See the deprecation notice in ``CmdMixin.__init__()``.
"""
pass