diff options
author | Alexis Roda <alexis.roda.villalonga@gmail.com> | 2019-07-26 21:47:54 +0200 |
---|---|---|
committer | Alexis Roda <alexis.roda.villalonga@gmail.com> | 2019-07-26 21:47:54 +0200 |
commit | 9747ffb9dd71dbd7179052d9f4f6c80e45b36ec5 (patch) | |
tree | 50c60cd06b9dfb5db0abc3c71a62a2cb35cd1e6d /z80count.py | |
parent | 9dc95398e2b2d09be884d71b0dbc6705d7715a2b (diff) | |
download | z80count-9747ffb9dd71dbd7179052d9f4f6c80e45b36ec5.tar.gz z80count-9747ffb9dd71dbd7179052d9f4f6c80e45b36ec5.zip |
Improve PEP8 compliance.
Diffstat (limited to 'z80count.py')
-rwxr-xr-x | z80count.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/z80count.py b/z80count.py index a465b3d..a12143c 100755 --- a/z80count.py +++ b/z80count.py @@ -88,10 +88,10 @@ def parse_command_line(): help="Number of tabs for new comments", default=2) parser.add_argument( "infile", nargs="?", type=argparse.FileType('r'), default=sys.stdin, - help="Input file") + help="Input file") parser.add_argument( "outfile", nargs="?", type=argparse.FileType('w'), default=sys.stdout, - help="Output file") + help="Output file") return parser.parse_args() |