MH CmdModuleHelper: deprecation (#5370) (#5413)

* MH CmdModuleHelper: deprecation

* add changelog fragment

* add deprecation comments in many parts of the code

(cherry picked from commit 91cac4c816)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot]
2022-10-23 19:11:48 +02:00
committed by GitHub
parent 957a74b525
commit f5ff54979a
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