Skip to content

Commit

Permalink
tools: check-imports using utf-8
Browse files Browse the repository at this point in the history
PR-URL: #30220
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
cclauss authored and MylesBorins committed Dec 17, 2019
1 parent 6cf8472 commit d9e5b72
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/check-imports.py
Expand Up @@ -2,6 +2,7 @@

from __future__ import print_function
import glob
import io
import re
import sys

Expand All @@ -15,7 +16,7 @@ def do_exist(file_name, lines, imported):


def is_valid(file_name):
with open(file_name) as source_file:
with io.open(file_name, encoding='utf-8') as source_file:
lines = [line.strip() for line in source_file]

usings, importeds, line_numbers, valid = [], [], [], True
Expand Down

0 comments on commit d9e5b72

Please sign in to comment.