fix cli_parse: require connection (#357)
* fix cli_parse: require connection * add changelog fragment * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>pull/358/head
parent
827ce48ff5
commit
31c8097e53
|
@ -0,0 +1,3 @@
|
|||
---
|
||||
minor_changes:
|
||||
- Fix cli_parse module to require a connection.
|
|
@ -37,7 +37,7 @@ ARGSPEC_CONDITIONALS = {
|
|||
class ActionModule(ActionBase):
|
||||
"""action module"""
|
||||
|
||||
_requires_connection = False
|
||||
_requires_connection = True
|
||||
|
||||
PARSER_CLS_NAME = "CliParser"
|
||||
|
||||
|
|
Loading…
Reference in New Issue