diff --git a/shopify_python/__init__.py b/shopify_python/__init__.py index f96aad8..92f5de1 100644 --- a/shopify_python/__init__.py +++ b/shopify_python/__init__.py @@ -7,7 +7,7 @@ from shopify_python import shopify_styleguide -__version__ = '0.2.0' +__version__ = '0.2.1' def register(linter): # type: (lint.PyLinter) -> None diff --git a/shopify_python/google_styleguide.py b/shopify_python/google_styleguide.py index 12249c0..6a3d4b7 100644 --- a/shopify_python/google_styleguide.py +++ b/shopify_python/google_styleguide.py @@ -68,7 +68,7 @@ class GoogleStyleGuideChecker(checkers.BaseChecker): 'Multiple imports usually result in noisy and potentially conflicting git diffs. To alleviate, ' 'separate imports into one item per line.'), 'C6011': ('Lambda has %(found)i nodes', - 'lambda-too-long', + 'use-simple-lambdas', "Okay to use them for one-liners. If the code inside the lambda function is any longer than a " "certain length, it's probably better to define it as a regular (nested) function."), 'C6012': ('Multiple generators in list comprehension',