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_api.py | |
parent | c241ca7e844eafc5f06bdac8852c8b026cfa0c83 (diff) | |
download | python-coveragepy-git-cf081d5e1fe6b1e753995f982f0c0a07c5d200b8.tar.gz |
Vertical imports
Diffstat (limited to 'tests/test_api.py')
-rw-r--r-- | tests/test_api.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/test_api.py b/tests/test_api.py index b0752730..a21372ad 100644 --- a/tests/test_api.py +++ b/tests/test_api.py @@ -1,6 +1,10 @@ """Tests for Coverage's API.""" -import fnmatch, os, re, sys, textwrap +import fnmatch +import os +import re +import sys +import textwrap import coverage from coverage.backward import StringIO |