From c2cd72d0f4ff4d380845333fbfaaf2c92d6a5674 Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Wed, 31 Aug 2016 17:41:10 -0500 Subject: [PATCH] Allow star imports from twine Unicode literals on Python 2 prevent people from being able to use from twine import * Closes gh-209 --- twine/__init__.py | 1 - 1 file changed, 1 deletion(-) diff --git a/twine/__init__.py b/twine/__init__.py index c8ea5aff..2b4bfcfa 100644 --- a/twine/__init__.py +++ b/twine/__init__.py @@ -12,7 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. from __future__ import absolute_import, division, print_function -from __future__ import unicode_literals __all__ = ( "__title__", "__summary__", "__uri__", "__version__", "__author__",