Skip to content

Commit d853987

Browse files
committed
Minor cleanup of Python 2 code
1 parent 7e8b113 commit d853987

2 files changed

Lines changed: 2 additions & 5 deletions

File tree

doc/conf.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# -*- coding: utf-8 -*-
2-
#
31
# importscan documentation build configuration file, created by
42
# sphinx-quickstart on Tue Mar 15 14:21:46 2016.
53
#

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
import io
21
from setuptools import setup, find_packages
32

43
long_description = "\n".join(
54
(
6-
io.open("README.rst", encoding="utf-8").read(),
7-
io.open("CHANGES.txt", encoding="utf-8").read(),
5+
open("README.rst", encoding="utf-8").read(),
6+
open("CHANGES.txt", encoding="utf-8").read(),
87
)
98
)
109

0 commit comments

Comments
 (0)