diff options
Diffstat (limited to 'coverage/backward.py')
-rw-r--r-- | coverage/backward.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/coverage/backward.py b/coverage/backward.py index e051fa55..17f04219 100644 --- a/coverage/backward.py +++ b/coverage/backward.py @@ -3,7 +3,7 @@ """Add things to old Pythons so I can pretend they are newer.""" -# This file does tricky stuff, so disable a pylint warning. +# This file's purpose is to provide modules to be imported from here. # pylint: disable=unused-import import os @@ -27,11 +27,6 @@ try: except ImportError: import configparser -try: - import toml -except ImportError: - toml = None - # What's a string called? try: string_class = basestring |