Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion shopify_python/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion shopify_python/google_styleguide.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down