Skip to content

Commit 3c22263

Browse files
committed
Deleted unecessary completer
1 parent a8a5cca commit 3c22263

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

PyOhio_2019/examples/arg_decorators.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ def __init__(self):
1515
# do_fsize parser
1616
fsize_parser = cmd2.Cmd2ArgumentParser(description='Obtain the size of a file')
1717
fsize_parser.add_argument('-c', '--comma', action='store_true',
18-
help='add comma for thousands separator',
19-
completer_method=cmd2.Cmd.path_complete)
18+
help='add comma for thousands separator')
2019
fsize_parser.add_argument('file_path', help='path of file',
2120
completer_method=cmd2.Cmd.path_complete)
2221

0 commit comments

Comments
 (0)