From 16daa7bcf90172408f8a8742773364ff2e41f7f3 Mon Sep 17 00:00:00 2001 From: Timothy Crosley Date: Wed, 6 Mar 2019 01:05:03 -0800 Subject: Fix open usage --- isort/isort.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isort/isort.py b/isort/isort.py index 0acadaf8..76eac83d 100644 --- a/isort/isort.py +++ b/isort/isort.py @@ -98,7 +98,7 @@ class SortImports(object): file_contents = None elif not file_contents: file_encoding = coding_check(file_path) - with io.open(file_path, encoding=file_encoding, newline='') as file_to_import_sort: + with open(file_path, encoding=file_encoding, newline='') as file_to_import_sort: try: file_contents = file_to_import_sort.read() self.file_path = file_path -- cgit v1.2.1