Eliminate the pylint warnings and update the pylint configuration (#2210)

JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
László Langó
2018-02-27 10:14:48 +01:00
committed by Dániel Bátyai
parent 88f7baa192
commit fbc53f78b7
5 changed files with 55 additions and 67 deletions
+3 -3
View File
@@ -51,9 +51,9 @@ def get_args():
def check_files(opts):
files = [JERRY_BUILDER, opts.testfile]
for file in files:
if not os.path.isfile(file):
sys.exit("File not found: %s" % file)
for _file in files:
if not os.path.isfile(_file):
sys.exit("File not found: %s" % _file)
def build_bin(heapsize, opts):