We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 470dfe2 commit a331d0fCopy full SHA for a331d0f
Doc/tutorial/stdlib.rst
@@ -78,8 +78,9 @@ and an optional number of lines to be displayed::
78
79
import argparse
80
81
- parser = argparse.ArgumentParser(prog = 'top',
82
- description = 'Show top lines from each file')
+ parser = argparse.ArgumentParser(
+ prog='top',
83
+ description='Show top lines from each file')
84
parser.add_argument('filenames', nargs='+')
85
parser.add_argument('-l', '--lines', type=int, default=10)
86
args = parser.parse_args()
0 commit comments