summaryrefslogtreecommitdiff
path: root/lab/parser.py
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2022-05-01 08:16:06 -0400
committerNed Batchelder <ned@nedbatchelder.com>2022-05-01 13:00:38 -0400
commit420c01394a31415d7a7cbb80be196bcfca48482c (patch)
treed71672faede9de984c024eadc678ae05ff5af558 /lab/parser.py
parent53f00a00b7cfb5e856136ea600844160746d6ae2 (diff)
downloadpython-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.py8
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: