diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-09 15:54:27 -0500 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2015-02-09 15:54:27 -0500 |
commit | cf081d5e1fe6b1e753995f982f0c0a07c5d200b8 (patch) | |
tree | 8a03e9d6a9ee3c7b5e9d09795ab6fe1751a2ba6a /tests/test_config.py | |
parent | c241ca7e844eafc5f06bdac8852c8b026cfa0c83 (diff) | |
download | python-coveragepy-git-cf081d5e1fe6b1e753995f982f0c0a07c5d200b8.tar.gz |
Vertical imports
Diffstat (limited to 'tests/test_config.py')
-rw-r--r-- | tests/test_config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_config.py b/tests/test_config.py index 366b4bc7..a35eb5eb 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -1,7 +1,8 @@ # -*- coding: utf-8 -*- """Test the config file handling for coverage.py""" -import sys, os +import sys +import os import coverage from coverage.misc import CoverageException |