From 6db2db91b96aaa1270c200ec931a2250fe2799c7 Mon Sep 17 00:00:00 2001 From: Bob Kline Date: Sun, 3 Apr 2022 18:31:03 -0400 Subject: Follow PEP-8 guidelines in tutorial for standard library (GH-26127) --- Doc/tutorial/stdlib.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Doc/tutorial/stdlib.rst b/Doc/tutorial/stdlib.rst index d90dc51..227a6d8 100644 --- a/Doc/tutorial/stdlib.rst +++ b/Doc/tutorial/stdlib.rst @@ -78,8 +78,9 @@ and an optional number of lines to be displayed:: import argparse - parser = argparse.ArgumentParser(prog = 'top', - description = 'Show top lines from each file') + parser = argparse.ArgumentParser( + prog='top', + description='Show top lines from each file') parser.add_argument('filenames', nargs='+') parser.add_argument('-l', '--lines', type=int, default=10) args = parser.parse_args() -- cgit v0.12