diff options
author | Claudiu Popa <pcmanticore@gmail.com> | 2017-10-12 12:31:29 +0200 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2017-10-12 12:31:29 +0200 |
commit | 83697ea500e316742897635ea97389f8a7a0c694 (patch) | |
tree | ee4e770a9f54625947e55920ce8f47d465964010 /astroid/builder.py | |
parent | 3592657a129019e1b88532da8efaf12a53835a91 (diff) | |
download | astroid-git-83697ea500e316742897635ea97389f8a7a0c694.tar.gz |
Fix lint warnings
Diffstat (limited to 'astroid/builder.py')
-rw-r--r-- | astroid/builder.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/astroid/builder.py b/astroid/builder.py index afb9daf1..b870c5a6 100644 --- a/astroid/builder.py +++ b/astroid/builder.py @@ -64,6 +64,7 @@ else: match = _ENCODING_RGX.match(line) if match is not None: return match.group(1) + return None def open_source_file(filename): """get data for parsing a file""" |