diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2022-05-01 08:16:06 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2022-05-01 13:00:38 -0400 |
commit | 420c01394a31415d7a7cbb80be196bcfca48482c (patch) | |
tree | d71672faede9de984c024eadc678ae05ff5af558 /lab/parser.py | |
parent | 53f00a00b7cfb5e856136ea600844160746d6ae2 (diff) | |
download | python-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz |
style: parens should indent the same as their opening line
Diffstat (limited to 'lab/parser.py')
-rw-r--r-- | lab/parser.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lab/parser.py b/lab/parser.py index 50b43564..43f3da52 100644 --- a/lab/parser.py +++ b/lab/parser.py @@ -28,19 +28,19 @@ class ParserMain: parser.add_option( "-d", action="store_true", dest="dis", help="Disassemble" - ) + ) parser.add_option( "-R", action="store_true", dest="recursive", help="Recurse to find source files" - ) + ) parser.add_option( "-s", action="store_true", dest="source", help="Show analyzed source" - ) + ) parser.add_option( "-t", action="store_true", dest="tokens", help="Show tokens" - ) + ) options, args = parser.parse_args() if options.recursive: |