diff --git a/setup.py b/setup.py index 18f62470c0..f80dcff2cc 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,6 @@ import re import shutil import sys -from io import open from setuptools import find_packages, setup @@ -36,7 +35,7 @@ def read(f): - with open(f, 'r', encoding='utf-8') as file: + with open(f, encoding='utf-8') as file: return file.read()