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 <[email protected]>
Reviewed-By: Richard Lau <[email protected]>
Reviewed-By: Joyee Cheung <[email protected]>
Reviewed-By: Luigi Pinca <[email protected]>
Reviewed-By: Ruben Bridgewater <[email protected]>
  • Loading branch information
cclauss authored and MylesBorins committed Nov 17, 2019
1 parent c568eb5 commit dbdc381
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/check-imports.py
Original file line number Diff line number Diff line change
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 dbdc381

Please sign in to comment.