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/hack_pyc.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/hack_pyc.py')
-rw-r--r-- | lab/hack_pyc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lab/hack_pyc.py b/lab/hack_pyc.py index d63da8fa..60b8459b 100644 --- a/lab/hack_pyc.py +++ b/lab/hack_pyc.py @@ -71,7 +71,7 @@ def hack_line_numbers(code): code.co_argcount, code.co_nlocals, code.co_stacksize, code.co_flags, code.co_code, tuple(new_consts), code.co_names, code.co_varnames, code.co_filename, code.co_name, new_firstlineno, new_lnotab - ) + ) return new_code |