1
0
forked from VimPlug/jedi

Remove some unnecessary utf-8 references

This commit is contained in:
Dave Halter
2020-07-02 03:30:41 +02:00
parent 8ee0c8593e
commit 332631434c
9 changed files with 6 additions and 22 deletions

View File

@@ -400,7 +400,7 @@ def collect_dir_tests(base_dir, test_files, check_thirdparty=False):
path = os.path.join(base_dir, f_name)
with open(path, encoding='utf-8', newline='') as f:
with open(path, newline='') as f:
source = f.read()
for case in collect_file_tests(path, StringIO(source),