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 /tests/conftest.py | |
parent | 53f00a00b7cfb5e856136ea600844160746d6ae2 (diff) | |
download | python-coveragepy-git-420c01394a31415d7a7cbb80be196bcfca48482c.tar.gz |
style: parens should indent the same as their opening line
Diffstat (limited to 'tests/conftest.py')
-rw-r--r-- | tests/conftest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/conftest.py b/tests/conftest.py index 39f39e25..03b51b2c 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -43,12 +43,12 @@ def set_warnings(): "ignore", category=DeprecationWarning, message=r".*imp module is deprecated in favour of importlib", - ) + ) warnings.filterwarnings( "ignore", category=pytest.PytestRemovedIn8Warning, - ) + ) if env.PYPY: # pypy3 warns about unclosed files a lot. |