__future__ not needed by Python >= 3.6
diff --git a/codespell_lib/_codespell.py b/codespell_lib/_codespell.py index 6c43d02..becf4d4 100644 --- a/codespell_lib/_codespell.py +++ b/codespell_lib/_codespell.py
@@ -17,8 +17,6 @@ Copyright (C) 2011 ProFUSION embedded systems """ -from __future__ import print_function - import argparse import codecs import configparser
diff --git a/codespell_lib/tests/test_basic.py b/codespell_lib/tests/test_basic.py index 80a725f..0328b41 100644 --- a/codespell_lib/tests/test_basic.py +++ b/codespell_lib/tests/test_basic.py
@@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -from __future__ import print_function - import contextlib import inspect import os