Skip to content

Commit 25c72b2

Browse files
author
Jason White
committed
more helpful descriptors and help statements for C6010
1 parent febe3d8 commit 25c72b2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

shopify_python/google_styleguide.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,10 @@ class GoogleStyleGuideChecker(checkers.BaseChecker):
6363
'finally-too-long',
6464
"The larger the 'finally' body size, the more likely that an exception will be raised during "
6565
"resource cleanup activities."),
66-
'C6010': ('Multiple items imported from %(module)s in one import statement.',
66+
'C6010': ('Statement imports multiple items from %(module)s',
6767
'multiple-import-items',
68-
'Separate imports into one item per line.')
68+
'Multiple imports usually result in noisy and potentially conflicting git diffs. To alleviate, '
69+
'separate imports into one item per line.')
6970
}
7071

7172
options = (

0 commit comments

Comments
 (0)