From 8c7b76a44f84f30fbcfc807f13fdc47c0e356a09 Mon Sep 17 00:00:00 2001 From: Jimmy Guo Date: Wed, 12 Apr 2017 10:09:09 -0400 Subject: [PATCH] covered by our pal pylint asd asd --- shopify_python/google_styleguide.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shopify_python/google_styleguide.py b/shopify_python/google_styleguide.py index 19f97d0..a3500f9 100644 --- a/shopify_python/google_styleguide.py +++ b/shopify_python/google_styleguide.py @@ -28,6 +28,8 @@ class GoogleStyleGuideChecker(checkers.BaseChecker): Checks that are already covered by Pylint include: - Never use catch-all 'except:' statements, or 'catch Exception' (bare-except, broad-except) - Do not use mutable objects as default values in the function or method definition (dangerous-default-value) + - Do not terminate your lines with semi-colons and + do not use semi-colons to put two commands on the same line. (unnecessary-semicolon, multiple-statements) """ __implements__ = (interfaces.IAstroidChecker,)