diff options
| author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2014-10-31 23:03:05 +0200 |
|---|---|---|
| committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2014-10-31 23:03:05 +0200 |
| commit | 064f5e3888f1986d9151250195a6f306ee80d8e8 (patch) | |
| tree | 369194d791c15fcfa63e5bc5b27832bc24b69c95 /checkers | |
| parent | 298d5b96550740a8810883fcfb6099043cd5626a (diff) | |
| download | pylint-git-064f5e3888f1986d9151250195a6f306ee80d8e8.tar.gz | |
Small style fixes.
Diffstat (limited to 'checkers')
| -rw-r--r-- | checkers/python3.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checkers/python3.py b/checkers/python3.py index 57a789203..ca34f0980 100644 --- a/checkers/python3.py +++ b/checkers/python3.py @@ -43,7 +43,7 @@ class Python3Checker(checkers.BaseChecker): 'print-statement', 'Used when a print statement is used ' '(`print` is a function in Python 3)', - {'maxversion': (3,0)}), + {'maxversion': (3, 0)}), 'W1601': ('apply built-in referenced', 'apply-builtin', 'Used when the apply built-in function is referenced ' @@ -212,7 +212,7 @@ class Python3Checker(checkers.BaseChecker): @utils.check_messages('no-absolute-import') def visit_from(self, node): - if node.modname == '__future__' : + if node.modname == '__future__': for name, _ in node.names: if name == 'division': self._future_division = True |
