From 72ebb9608cf2977b4f9ba23cf4858d003e3bf759 Mon Sep 17 00:00:00 2001 From: SergeySatskiy Date: Thu, 25 Apr 2019 19:59:41 -0400 Subject: [PATCH] Removing extra import --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 3195fdb9..1a29a85f 100644 --- a/setup.py +++ b/setup.py @@ -63,7 +63,6 @@ def getLongDescription(): except Exception as exc: print('pypandoc package is not installed: the markdown ' 'README.md convertion to rst failed: ' + str(exc), file=sys.stderr) - import io # pandoc is not installed, fallback to using raw contents with io.open('README.md', encoding='utf-8') as f: long_description = f.read()