diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-10-04 13:44:19 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-10-06 15:34:32 +0200 |
| commit | 3df576449993ad88b70b6668931d875557cf5139 (patch) | |
| tree | 2b650465ba26e13fc0aa53622c2984907572fbe2 /python | |
| parent | ba31dc303a2db9d9ce0cf8f8d08697fc46461320 (diff) | |
lib: add CMD_ATTR_NOSH
To propagate into .xref so extract.pl can be handled there.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'python')
| -rw-r--r-- | python/clippy/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/clippy/__init__.py b/python/clippy/__init__.py index c356a29d3f..281e2bb3c6 100644 --- a/python/clippy/__init__.py +++ b/python/clippy/__init__.py @@ -32,6 +32,7 @@ from _clippy import ( CMD_ATTR_YANG, CMD_ATTR_HIDDEN, CMD_ATTR_DEPRECATED, + CMD_ATTR_NOSH, ) @@ -98,3 +99,4 @@ class CmdAttr(_IntFlag): YANG = CMD_ATTR_YANG HIDDEN = CMD_ATTR_HIDDEN DEPRECATED = CMD_ATTR_DEPRECATED + NOSH = CMD_ATTR_NOSH |
