diff options
Diffstat (limited to 'coverage')
| -rw-r--r-- | coverage/tomlconfig.py | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/coverage/tomlconfig.py b/coverage/tomlconfig.py index a2d4c6e8..a7d39042 100644 --- a/coverage/tomlconfig.py +++ b/coverage/tomlconfig.py @@ -15,11 +15,6 @@ if env.PYVERSION >= (3, 11, 0, "alpha", 7): import tomllib # pylint: disable=import-error else: # TOML support on Python 3.10 and below is an install-time extra option. - # (Import typing is here because import_third_party will unload any module - # that wasn't already imported. tomli imports typing, and if we unload it, - # later it's imported again, and on Python 3.6, this causes infinite - # recursion.) - import typing # pylint: disable=unused-import tomllib = import_third_party("tomli") |
