8000 Follow PEP-8 guidelines in tutorial for standard library (GH-26127) · python/cpython@6db2db9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 6db2db9

Browse files
authored
Follow PEP-8 guidelines in tutorial for standard library (GH-26127)
1 parent 087d0fa commit 6db2db9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Doc/tutorial/stdlib.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,9 @@ and an optional number of lines to be displayed::
7878

7979
import argparse
8080

81-
parser = argparse.ArgumentParser(prog = 'top',
82-
description = 'Show top lines from each file')
81+
parser = argparse.ArgumentParser(
82+
prog='top',
83+
description='Show top lines from each file')
8384
parser.add_argument('filenames', nargs='+')
8485
parser.add_argument('-l', '--lines', type=int, default=10)
8586
args = parser.parse_args()

0 commit comments

Comments
 (0)
0