Skip to content

Commit dc94af3

Browse files
committed
Minor housekeeping. Updated CODEOWNERS with recent additions
1 parent 091a88e commit dc94af3

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

CODEOWNERS

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,19 @@
1616
# cmd2 code
1717
cmd2/__init__.py @tleonhardt @kotfu
1818
cmd2/ansi.py @kmvanbrunt @tleonhardt
19-
cmd2/argparse_*.py @kmvanbrunt
19+
cmd2/argparse_*.py @kmvanbrunt @anselor
2020
cmd2/clipboard.py @tleonhardt
2121
cmd2/cmd2.py @tleonhardt @kmvanbrunt @kotfu
22+
cmd2/command_definition.py @anselor
2223
cmd2/constants.py @kotfu
24+
cmd2/decorators.py @kotfu @kmvanbrunt @anselor
25+
cmd2/exceptions.py @kmvanbrunt @anselor
26+
cmd2/history.py @kotfu @tleonhardt
2327
cmd2/parsing.py @kotfu @kmvanbrunt
2428
cmd2/plugin.py @kotfu
25-
cmd2/pyscript_bridge.py @kmvanbrunt
29+
cmd2/py_bridge.py @kmvanbrunt
2630
cmd2/rl_utils.py @kmvanbrunt
31+
cmd2/table_creator.py @kmvanbrunt
2732
cmd2/transcript.py @kotfu
2833
cmd2/utils.py @tleonhardt @kotfu @kmvanbrunt
2934

@@ -34,6 +39,11 @@ docs/* @tleonhardt @kotfu
3439
examples/async_printing.py @kmvanbrunt
3540
examples/environment.py @kotfu
3641
examples/tab_*.py @kmvanbrunt
42+
examples/modular_*.py @anselor
43+
examples/modular_commands/* @anselor
44+
45+
plugins/template/* @kotfu
46+
plugins/ext_test/* @anselor
3747

3848
# Unit Tests
3949
tests/pyscript/* @kmvanbrunt
@@ -47,6 +57,8 @@ tests/test_pars*.py @kotfu
4757
tests/test_run_pyscript.py @kmvanbrunt
4858
tests/test_transcript.py @kotfu
4959

60+
tests_isolated/test_commandset/* @anselor
61+
5062
# Top-level project stuff
5163
CONTRIBUTING.md @tleonhardt @kotfu
5264
setup.py @tleonhardt @kotfu

examples/modular_subcommands.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python3
22
# coding=utf-8
3-
"""A simple example demonstracting modular subcommand loading through CommandSets
3+
"""A simple example demonstrating modular subcommand loading through CommandSets
44
55
In this example, there are loadable CommandSets defined. Each CommandSet has 1 subcommand defined that will be
66
attached to the 'cut' command.

0 commit comments

Comments
 (0)